Blame view

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