How can I listen to angular component binding change and perform actions?
angular.module('myapp')
    .component('myComponent', {
        templateUrl: 'some.html',
        controller: MyController,
        controllerAs: 'myCtrl',
        bindings: {
            items: '<'
        }
    });
now when items changes I want to perform another action using this value,
How can I do it?
 
     
     
     
     
     
     
     
     
    