Blame view

src/Breadcrumb/Breadcrumb.js 280 Bytes
3a3ecabe   Imshann   init
1
2
3
4
5
6
7
  import template from "./Breadcrumb.html";
  import style from "antd/lib/breadcrumb/style/index.css";
  
  class Breadcrumb {
  
      useModules = ["esNgAntd"];
  
3a3ecabe   Imshann   init
8
9
10
      constructor() {
          esNgAntd.createStyle("ant-breadcrumb", style)
      }
f886eef1   Imshann   优化Alert、Breadcrumb
11
12
13
14
  
      render() {
          return template;
      }
3a3ecabe   Imshann   init
15
  }