各位下午好,我们的项目使用了vue-i18n@7.x作为语言切换插件,后来在项目中引入了elementUI,想把elementUI中的语言切换和该插件结合起来。我是这样做的:
import Vue from 'vue'
import VueI18n from 'vue-i18n'
import eleLocale from 'element-ui/lib/locale';
import enLocale from 'element-ui/lib/locale/lang/en'
import zhLocale from 'element-ui/lib/locale/lang/zh-CN'
Vue.use(VueI18n);
const locale = 'en-US' // default locale
const i18n = new VueI18n({
locale,
messages: {
'en-US': {
message: {
hello:'hello world!'
},
enLocale
},
'zh-CN': {
message: {
hello:'你好,世界'
},
zhLocale
}
}
});
eleLocale.i18n((key, value) => i18n.t(key, value)) //为了实现element插件的多语言切换
export default i18n
结果在页面中出现了这样的错误:
报错信息如下:
请各位指点,应该怎么办
已经解决了,用的是
Object.assign({ message: 'hello' }, enLocale)
方法注意在使用该种写法时,需要把包在外面的大括号去掉