iview / iview-project

This project is build for Vue.js 2 + vue-router + webpack2 + iView 3
MIT License
839 stars 389 forks source link

vue-i18n 使用了6.0 翻译不了,为什么呢? #12

Closed w3cpress closed 7 years ago

w3cpress commented 7 years ago
import iViewZhLocale from 'iview/src/locale/lang/zh-CN';
import iViewEnLocale from 'iview/src/locale/lang/en-US';
// 国际化配置
const i18n = new VueI18n({
    locale: 'en-US', // set locale
    messages: {
        'zh-CN': iViewZhLocale,   // 中文语言包
        'en-US': iviewEnLocale    // 英文语言包
    }
});

其他的都和官网的一样,不知道为什么用了vue-i18n 6.0后,翻译不了iView组件了