import template from "./BreadcrumbItem.html"; angular.module("esNgAntd").directive("antdBreadcrumbItem", function () { return { controllerAs: "antdBreadcrumbItem", restrict: "E", transclude: true, replace: true, scope: { href: "@", }, template: template, }; });