You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
735 B
32 lines
735 B
import Vue from 'vue' |
|
import VueI18n from 'vue-i18n' |
|
import elementEnLocale from 'element-ui/lib/locale/lang/en' // element-ui lang |
|
import elementZhLocale from 'element-ui/lib/locale/lang/zh-CN'// element-ui lang |
|
import enLocale from './en' |
|
import zhLocale from './zh' |
|
import { getStore } from '@/util/store' |
|
Vue.use(VueI18n) |
|
const Avue = window.AVUE; |
|
const WfDesign = window.WfDesign.default; |
|
|
|
const messages = { |
|
en: { |
|
...enLocale, |
|
...elementEnLocale, |
|
...Avue.locale.en, |
|
...WfDesign.locale.en, |
|
}, |
|
zh: { |
|
...zhLocale, |
|
...elementZhLocale, |
|
...Avue.locale.zh, |
|
...WfDesign.locale.zh, |
|
} |
|
} |
|
|
|
const i18n = new VueI18n({ |
|
locale: getStore({ name: 'language' }) || 'zh', |
|
messages |
|
}) |
|
|
|
export default i18n |