I was not declaring `controllerAs` in my component and using default `$ctrl` in template. `sv-root` would be just empty div. After couple of hours I discovered that you have to use `controllerAs: 'something'` and use it in your template in order to have this directive working. Hope that helps someone.