UNPKG

common-shared-component

Version:

WCG -- AngularJS Component Library

16 lines (14 loc) 505 B
angular.module('testModule', []) .directive('commonShared', function () { return { restrict: 'EA', templateUrl: './node_modules/common-shared-component/testModule.component.html', controllerAs: 'aec', controller: 'testModuleController' }; }) .controller("testModuleController", ['$scope', function ($scope) { $scope.testModuleDynamicVal = "There you go......" }]);