提醒:vue3要使用vue-i18n必须要9以上的版本 npm install [email protected]
具体操作
在src文件下新建一个lang文件夹,里面分别建好“cn.js”、“en.js”、 “index.js”三个文件
cn.js和en.js中存放对应的翻译,例如:
const messages = {
home: {
title: 'Book Store',
hint: 'Computer Science And Software Engineering',
guessYouLike: 'Guess You Like',
}
}
export default messages
const messages = {
home: {
title: '书城',
hint: '计算机科学和软件工程',
guessYouLike: '猜你喜欢'
}
}
export default messages
index.js中存放如下模板:
import { createI18n } from 'vue-i18n'
import en from './en'
import cn from './cn'
const messages = {
en, cn
}
const localeData = {
legacy: false, // composition API
globalInjection: true, //全局生效$t
locale: cn, // 默认cn翻译
messages
}
export function setupI18n (app) {
const i18n = createI18n(localeData)
app.use(i18n)
}
然后在main.js中使用setupI18n
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import { setupI18n } from './lang/index'
const app = createApp(App)
app.use(store).use(router).mount('#app')
setupI18n(app)
使用的时候只需要在对应的地方写上 {{ $t("home.title") }} 就能使用了,需要特别注意的是必须使用$t开头,不能单独用t,如果需要单独用t的话需要其他的配置,直接用$t也比较方便,关于怎么单独使用t这里就不细说了
<span class="ebook-popup-title-text">
{{$t("home.title")}}
</span>