若依微服务1.03版本

1、数据字典支持国际化,场景中有示例
dev
xins 1 year ago
parent 2bac5c6172
commit f80251884e

@ -38,6 +38,9 @@ import VueMeta from 'vue-meta'
// 字典数据组件 // 字典数据组件
import DictData from '@/components/DictData' import DictData from '@/components/DictData'
import i18n from './lang'
// 全局方法挂载 // 全局方法挂载
Vue.prototype.getDicts = getDicts Vue.prototype.getDicts = getDicts
Vue.prototype.getConfigKey = getConfigKey Vue.prototype.getConfigKey = getConfigKey
@ -73,7 +76,8 @@ DictData.install()
*/ */
Vue.use(Element, { Vue.use(Element, {
size: Cookies.get('size') || 'medium' // set element-ui default size size: Cookies.get('size') || 'medium', // set element-ui default size
i18n: (key, value) => i18n.t(key, value)
}) })
Vue.config.productionTip = false Vue.config.productionTip = false
@ -82,5 +86,6 @@ new Vue({
el: '#app', el: '#app',
router, router,
store, store,
render: h => h(App) render: h => h(App),
i18n
}) })

Loading…
Cancel
Save