BreadcrumbItem.js 370 Bytes
import template from "./BreadcrumbItem.html";
angular.module("esNgAntd").directive("antdBreadcrumbItem", ["esNgAntd", function (esNgAntd) {
  return {
    template: template,
    restrict: "E",
    replace: true,
    transclude: true,
    scope: {
      href: "@"
    },
    link: function ($scope) {
      esNgAntd.clearAttribute($element[0], ["href"]);
    }
  };
}]);