Last active
July 5, 2019 06:28
-
-
Save sendya/7c63b66f581ba97e41ff291c68371268 to your computer and use it in GitHub Desktop.
/src/components/use.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable */ | |
/** | |
* 该文件是为了按需加载,剔除掉了一些不需要的框架组建和样式表。 | |
* 减少了编译支持库包大小 | |
*/ | |
import Vue from 'vue' | |
import { | |
LocaleProvider, | |
Layout, | |
Input, | |
InputNumber, | |
Button, | |
Switch, | |
Checkbox, | |
Select, | |
Card, | |
Form, | |
Row, | |
Col, | |
Modal, | |
Table, | |
Tabs, | |
Icon, | |
Badge, | |
Popover, | |
Dropdown, | |
List, | |
Avatar, | |
Breadcrumb, | |
Steps, | |
Spin, | |
Menu, | |
Drawer, | |
Tooltip, | |
Alert, | |
Tag, | |
Divider, | |
DatePicker, | |
Upload, | |
Progress, | |
Skeleton, | |
message, | |
notification | |
} from 'ant-design-vue' | |
Vue.use(LocaleProvider) | |
Vue.use(Layout) | |
Vue.use(Input) | |
Vue.use(InputNumber) | |
Vue.use(Button) | |
Vue.use(Switch) | |
Vue.use(Checkbox) | |
Vue.use(Select) | |
Vue.use(Card) | |
Vue.use(Form) | |
Vue.use(Row) | |
Vue.use(Col) | |
Vue.use(Modal) | |
Vue.use(Table) | |
Vue.use(Tabs) | |
Vue.use(Icon) | |
Vue.use(Badge) | |
Vue.use(Popover) | |
Vue.use(Dropdown) | |
Vue.use(List) | |
Vue.use(Avatar) | |
Vue.use(Breadcrumb) | |
Vue.use(Steps) | |
Vue.use(Spin) | |
Vue.use(Menu) | |
Vue.use(Drawer) | |
Vue.use(Tooltip) | |
Vue.use(Alert) | |
Vue.use(Tag) | |
Vue.use(Divider) | |
Vue.use(DatePicker) | |
Vue.use(Upload) | |
Vue.use(Progress) | |
Vue.use(Skeleton) | |
// Vue.use(VueCropper) | |
Vue.use(notification) | |
Vue.prototype.$confirm = Modal.confirm | |
Vue.prototype.$message = message | |
Vue.prototype.$notification = notification | |
Vue.prototype.$info = Modal.info | |
Vue.prototype.$success = Modal.success | |
Vue.prototype.$error = Modal.error | |
Vue.prototype.$warning = Modal.warning |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment