scope:{
directiveVariable: '@'
}
<div my-directive="cntrVar"></div>
angular
.module('app')
.directive('myDirective', function () {
return {
scope: {
myVar: '=myDirective' // или через @, зависит от того что вам нужно
},
link: function (scope, el, attr) {
scope.$watch('myVar', function (ctrlVal) {
console.log(ctrlVal);
});
}
};
});
scope.$parent