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';
|
be966e9f
梁灏
add Modal component
|
26
|
import Modal from './components/modal';
|
e355dd49
梁灏
add Select Component
|
27
|
import { Select, Option, OptionGroup } from './components/select';
|
7fa943eb
梁灏
init
|
28
29
30
|
const iview = {
Button,
|
c67c7095
梁灏
add some component
|
31
|
ButtonGroup: Button.Group,
|
7fa943eb
梁灏
init
|
32
33
34
35
|
Icon,
Input,
Switch,
Radio,
|
c67c7095
梁灏
add some component
|
36
|
RadioGroup: Radio.Group,
|
7fa943eb
梁灏
init
|
37
|
Checkbox,
|
c67c7095
梁灏
add some component
|
38
|
CheckboxGroup: Checkbox.Group,
|
7fa943eb
梁灏
init
|
39
40
|
InputNumber,
Row,
|
c67c7095
梁灏
add some component
|
41
|
iCol: Col,
|
7fa943eb
梁灏
init
|
42
43
44
45
46
47
|
Page,
Badge,
Tag,
Progress,
Circle,
Timeline,
|
c67c7095
梁灏
add some component
|
48
|
TimelineItem: Timeline.Item,
|
7fa943eb
梁灏
init
|
49
50
51
52
|
Affix,
BackTop,
Spin,
Steps,
|
c67c7095
梁灏
add some component
|
53
|
Step: Steps.Step,
|
9d69bab6
梁灏
add Alert component
|
54
|
Breadcrumb,
|
c67c7095
梁灏
add some component
|
55
|
BreadcrumbItem: Breadcrumb.Item,
|
49306c7a
梁灏
add Collapse comp...
|
56
|
Alert,
|
15bae144
梁灏
add Card component
|
57
|
Collapse,
|
c67c7095
梁灏
add some component
|
58
|
Panel: Collapse.Panel,
|
7c15ac9e
梁灏
add Message compo...
|
59
|
Card,
|
40f8606f
梁灏
add Notice component
|
60
|
Message,
|
9dde24b6
梁灏
add LoadingBar co...
|
61
|
Notice,
|
be966e9f
梁灏
add Modal component
|
62
|
LoadingBar,
|
e355dd49
梁灏
add Select Component
|
63
64
65
66
|
Modal,
iSelect: Select,
iOption: Option,
iOptionGroup: OptionGroup
|
7fa943eb
梁灏
init
|
67
68
69
|
};
module.exports = iview;
|