Blame view

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