Breadcrumb.js
489 Bytes
import template from "./Breadcrumb.html";
import style from "antd/lib/breadcrumb/style/index.css";
angular.module("esNgAntd").directive("antdBreadcrumb", function (esNgAntd) {
return {
controllerAs: "antdBreadcrumb",
restrict: "E",
transclude: true,
replace: true,
template: template,
link: function ($scope, $element, $attrs, $controllers, $transclude) {
esNgAntd.createStyle("ant-breadcrumb", style);
},
};
});