Blame view

index.js 1.39 KB
7fa943eb   梁灏   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  import Button from './components/button';
  import Icon from './components/icon';
  import Input from './components/input';
  import Switch from './components/switch';
  import Radio from './components/radio';
  import Checkbox from './components/checkbox';
  import InputNumber from './components/input-number';
  import { Row, Col } from './components/layout';
  import Page from './components/page';
  import Badge from './components/badge';
  import Tag from './components/tag';
  import Progress from './components/progress';
  import Circle from './components/circle';
  import Timeline from './components/timeline';
  import Affix from './components/affix';
  import BackTop from './components/back-top';
  import Spin from './components/spin';
  import Steps from './components/steps';
  import Breadcrumb from './components/breadcrumb';
9d69bab6   梁灏   add Alert component
20
  import Alert from './components/alert';
49306c7a   梁灏   add Collapse comp...
21
  import Collapse from './components/collapse';
15bae144   梁灏   add Card component
22
  import Card from './components/card';
7c15ac9e   梁灏   add Message compo...
23
  import Message from './components/message';
40f8606f   梁灏   add Notice component
24
  import Notice from './components/notice';
9dde24b6   梁灏   add LoadingBar co...
25
  import LoadingBar from './components/loading-bar';
7fa943eb   梁灏   init
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  
  const iview = {
      Button,
      Icon,
      Input,
      Switch,
      Radio,
      Checkbox,
      InputNumber,
      Row,
      Col,
      Page,
      Badge,
      Tag,
      Progress,
      Circle,
      Timeline,
      Affix,
      BackTop,
      Spin,
      Steps,
9d69bab6   梁灏   add Alert component
47
      Breadcrumb,
49306c7a   梁灏   add Collapse comp...
48
      Alert,
15bae144   梁灏   add Card component
49
      Collapse,
7c15ac9e   梁灏   add Message compo...
50
      Card,
40f8606f   梁灏   add Notice component
51
      Message,
9dde24b6   梁灏   add LoadingBar co...
52
53
      Notice,
      LoadingBar
7fa943eb   梁灏   init
54
55
56
  };
  
  module.exports = iview;