mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
10 lines
246 B
JavaScript
10 lines
246 B
JavaScript
import Vue from 'vue'
|
|
import i18n from '@/i18n'
|
|
import Element from 'element-ui'
|
|
import 'element-ui/lib/theme-chalk/index.css'
|
|
|
|
// Vue.use(Element, { size: 'small', zIndex: 3000 })
|
|
Vue.use(Element, {
|
|
i18n: (key, value) => i18n.t(key, value)
|
|
})
|