Tag.js 226 Bytes
import template from "./Tag.html";
angular.module("esNgAntd").directive("antdTag", function () {
    return {
        controllerAs: "antdTag",
        restrict: "E",
        transclude: true,
        replace: true,
    };
});