Blame view

build/BreadcrumbItem/BreadcrumbItem.js 287 Bytes
3a3ecabe   Imshann   init
1
  import template from "./BreadcrumbItem.html";
81f8a467   Imshann   调整组件前缀
2
  angular.module("esNgAntd").directive("antdBreadcrumbItem", function () {
3a3ecabe   Imshann   init
3
      return {
81f8a467   Imshann   调整组件前缀
4
          controllerAs: "antdBreadcrumbItem",
3a3ecabe   Imshann   init
5
6
7
8
9
10
          restrict: "E",
          transclude: true,
          replace: true,
          template: template,
      };
  });