实现效果:
一.安装
cnpm i vue-i18n --save
二.main.js中全局引入
import VueI18n from 'vue-i18n';
Vue.use(VueI18n)
// vue-i18n其实是一个对象,每种语言对应一个key
const messages={
en:{
message:{
hello:"hello world"
}
},
cn:{
message:{
hello:"你好"
}
}
}
const i18n=new VueI18n({