2019-04-03 00:25:12 +02:00
|
|
|
import Vue from 'vue'
|
|
|
|
import { Button, Select, Tag, Option, Table, FormItem, Card,
|
|
|
|
Form, Tabs, TabPane, Switch, Input, Loading, TimeSelect,
|
2019-04-29 00:27:29 +02:00
|
|
|
TableColumn, ColorPicker, Pagination, Popover, Tooltip,
|
|
|
|
Container, Footer , Timeline, TimelineItem} from 'element-ui'
|
2019-04-23 15:45:52 +02:00
|
|
|
import localeEn from 'element-ui/lib/locale/lang/en'
|
|
|
|
import localeIt from 'element-ui/lib/locale/lang/it'
|
|
|
|
import locale from 'element-ui/lib/locale'
|
|
|
|
locale.use(localeIt)
|
2019-04-03 00:25:12 +02:00
|
|
|
|
|
|
|
export default () => {
|
|
|
|
Vue.use(Button)
|
2019-04-29 00:27:29 +02:00
|
|
|
Vue.use(Container)
|
|
|
|
Vue.use(Timeline)
|
|
|
|
Vue.use(TimelineItem)
|
|
|
|
Vue.use(Footer)
|
|
|
|
Vue.use(Tooltip)
|
2019-04-03 00:25:12 +02:00
|
|
|
Vue.use(Popover)
|
|
|
|
Vue.use(Card)
|
|
|
|
Vue.use(Select)
|
|
|
|
Vue.use(Tag)
|
|
|
|
Vue.use(Input)
|
|
|
|
Vue.use(Tabs)
|
|
|
|
Vue.use(TabPane)
|
|
|
|
Vue.use(Option)
|
|
|
|
Vue.use(Switch)
|
|
|
|
Vue.use(ColorPicker)
|
|
|
|
Vue.use(Table)
|
|
|
|
Vue.use(TableColumn)
|
|
|
|
Vue.use(Pagination)
|
|
|
|
Vue.use(FormItem)
|
|
|
|
Vue.use(Form)
|
|
|
|
Vue.use(TimeSelect)
|
|
|
|
Vue.use(Loading.directive)
|
|
|
|
}
|