Blame view

build/ListItem/ListItem.js 237 Bytes
3a3ecabe   Imshann   init
1
2
3
4
5
6
7
8
9
  import template from "./ListItem.html";
  angular.module("esNgAntd").directive("esListItem", function () {
      return {
          controllerAs: "esListItem",
          restrict: "E",
          transclude: true,
          replace: true,
      };
  });