您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

article.directive.js 447B

1234567891011121314151617
  1. /**
  2. * Created by robin on 02/22/17.
  3. */
  4. angular.module('app')
  5. .directive('article', [
  6. function () {
  7. return {
  8. restrict: 'E',
  9. require: 'ngModel',
  10. templateUrl: 'views/directives/article.html',
  11. scope: {
  12. 'ngModel': '='
  13. },
  14. link: function ($scope, elm, attr, ctrl) {
  15. }
  16. };
  17. }]);