UNPKG

344 BJavaScriptView Raw
1class %DIRECTIVE_NAME%Controller {
2 constructor($element) {
3 console.log($element);
4 }
5}
6
7%DIRECTIVE_NAME%Controller.$inject = ['$element'];
8
9export function %DIRECTIVE_NAME%() {
10 return {
11 restrict: 'EA',
12 scope: {},
13 controller: %DIRECTIVE_NAME%Controller,
14 controllerAs: '%DIRECTIVE_NAME%',
15 bindToController: true
16 }
17}
\No newline at end of file