Blame view

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