使用步骤
1. 安装
npm i vue-i18n
2. vue-cli下使用
//1. 引入 vue-i18n
import Vue from 'vue'
import VueI18n from 'vue-i18n'
Vue.use(VueI18n)//2. 定义messages
const messages = {en: {text: {hello: 'hello world'}},zh: {text: {hello: '你好、世界'}}
}//如果messages字段很多,可以写成文件,然后引入,例:
import En from './en'
import Zh from './zh'
const messages = {en: En,zh: Zh
}
其中en.js与 zh.js文件
//en.js
export default{text: {hello: 'hello world'}
}
//zh.js
export default{text: {hello: '你好、世界'}
}//3. new VueI18n()
const i18n = new VueI18n({locale: 'en', // 默认语言messages
})
export default i18n//4. 在main.js中挂载i18n
new Vue({el: '#app',router,i18n,render: h => h(App)
})//5. 在html中使用<h3 class=title> {{$t('text.hello')}} </h3>
踩坑记录
const messages = {}const i18n = new VueI18n({locale: 'en', messages
})
这两处变量一定要是 messages啊,不要写成message 或其他自己定义的什么变量名。
如果不是messages会无效,显示text.hello,但不会报错。
我在这儿挣扎了一上午,挨个跟源文档检查才找出的原因。。。