importElement.js 949 字节
Newer Older
yma16's avatar
yma16 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import {
    Container,
    Header,
    Aside,
    Main,
    Footer,
    Message,
    Form,
    Button,
    Table,
    TableColumn,
    Drawer,
    Input,
    Card,
    Menu,
    Submenu,
    MenuItem,
    MenuItemGroup,
    FormItem,
    Avatar,
    Link,
22 23
    Loading,
    Pagination,
yma16's avatar
yma16 已提交
24 25
    Alert,
    Notification
yma16's avatar
yma16 已提交
26 27
} from 'element-ui'

28
const importElementComponents = (Vue) => {
yma16's avatar
yma16 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
    Vue.use(Container)
    Vue.use(Header)
    Vue.use(Main)
    Vue.use(Aside)
    Vue.use(Footer)
    Vue.use(Form)
    Vue.use(FormItem)
    Vue.use(Button)
    Vue.use(Table)
    Vue.use(TableColumn)
    Vue.use(Drawer)
    Vue.use(Input)
    Vue.use(Card)
    Vue.use(MenuItem)
    Vue.use(Menu)
    Vue.use(Submenu)
    Vue.use(MenuItemGroup)
    Vue.use(Avatar)
    Vue.use(Link)
    Vue.use(Loading)
49 50
    Vue.use(Pagination)
    Vue.use(Alert)
yma16's avatar
yma16 已提交
51
    Vue.prototype.$message = Message
yma16's avatar
yma16 已提交
52
    Vue.prototype.$notify = Notification
yma16's avatar
yma16 已提交
53 54 55
}

export default importElementComponents