1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| import Vue from 'vue'
| import {
| Dialog,
| Form,
| FormItem,
| Input,
| Button,
| Table,
| TableColumn,
| Pagination,
| Select,
| Option,
| DatePicker,
| InputNumber,
| Loading,
| Message,
| MessageBox,
| Row,
| Col,
| Popover
| } from 'element-ui'
| Vue.use(Dialog)
| Vue.use(Form)
| Vue.use(FormItem)
| Vue.use(Input)
| Vue.use(Button)
| Vue.use(Table)
| Vue.use(TableColumn)
| Vue.use(Pagination)
| Vue.use(Select)
| Vue.use(Option)
| Vue.use(DatePicker)
| Vue.use(InputNumber)
| Vue.use(Row)
| Vue.use(Col)
| Vue.use(Popover)
| Vue.use(Loading)
|
| Vue.prototype.$message = Message
| Vue.prototype.$messageBox = MessageBox
|
|