Blame view

src/BreadcrumbItem/BreadcrumbItem.js 294 Bytes
3a3ecabe   Imshann   init
1
2
3
  import template from "./BreadcrumbItem.html";
  
  class BreadcrumbItem {
f886eef1   Imshann   优化Alert、Breadcrumb
4
5
6
7
8
9
10
11
12
      useModules = ["esNgAntd"];
  
      constructor() {
          esNgAntd.clearAttribute($element[0], ["href"]);
      }
  
      render() {
          return template;
      }
d6436262   Imshann   feat(Col): 新增offs...
13
  }
f886eef1   Imshann   优化Alert、Breadcrumb
14
15
16
17
  
  BreadcrumbItem.propTypes = {
      href: PropTypes.string,
  };