forked from okoala/vue-antd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
61 lines (56 loc) · 1.42 KB
/
index.js
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import './style/index.less'
import meta from './package.json'
import * as utils from './utils'
window.matchMedia = window.matchMedia || function () {
return {
matches: false,
addListener: () => {},
removeListener: () => {}
}
}
import vTag from './components/tag'
import vSpin from './components/spin'
import vBadge from './components/badge'
import vTable from './components/table'
import vAffix from './components/affix'
import vIcon from './components/iconfont'
import vSwitch from './components/switch'
import vUpload from './components/upload'
import vCheckbox from './components/checkbox'
import { vRow, vCol } from './components/layout'
import vSteps, { vStep } from './components/steps'
import vInputNumber from './components/input-number'
// import vSelect, { vOption } from './components/select'
import vRadio, { vRadioGroup } from './components/radio'
import vButton, { vButtonGroup } from './components/button'
import vBreadcrumb, { vBreadcrumbItem } from './components/breadcrumb'
import { vProgressLine, vProgressCircle } from './components/progress'
const antd = {
vRow,
vCol,
vButton,
vButtonGroup,
vIcon,
vCheckbox,
vInputNumber,
vRadio,
vRadioGroup,
// vSelect,
// vOption,
vSwitch,
vUpload,
vBadge,
vProgressLine,
vProgressCircle,
vTable,
vTag,
vSpin,
vBreadcrumb,
vBreadcrumbItem,
vSteps,
vStep,
vAffix
}
antd.utils = utils
antd.version = meta.version
export default antd