Maybe someone know how to solve that problem:
angular.module('myApp')
.component('myComponent', {
controller: function () {
this.prop1 = 1;
},
templateUrl: 'template.html'
}
So $watch() is not enable for new version. $onChanges() - not work because this is inner property. Can have someone solution to resolve this problem? Thank's for your help.