溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

vue使用vue-i18n實(shí)現(xiàn)國際化的實(shí)現(xiàn)代碼

發(fā)布時(shí)間:2020-10-05 08:12:44 來源:腳本之家 閱讀:212 作者:平平不平 欄目:web開發(fā)

需求

公司項(xiàng)目需要國際化,點(diǎn)擊按鈕切換中文/英文

1、安裝

npm install vue-i18n --save

2、注入 vue 實(shí)例中,項(xiàng)目中實(shí)現(xiàn)調(diào)用 api 和 模板語法

import VueI18n from 'vue-i18n'

Vue.use(VueI18n) ;

const i18n = new VueI18n({
  locale: 'zh-CN',  // 語言標(biāo)識, 通過切換locale的值來實(shí)現(xiàn)語言切換,this.$i18n.locale 
  messages: {
   'zh-CN': require('./common/lang/zh'),  // 中文語言包
   'en-US': require('./common/lang/en')  // 英文語言包
  }
})

new Vue({
 el: '#app',
 i18n, // 最后
 router,
 template: '<App/>',
 components: { App }
})

3、對應(yīng)語言包

zh.js中文語言包:

export const lang = {
 homeOverview:'首頁概覽',
 firmOverview:'公司概述',
 firmReports:'財(cái)務(wù)報(bào)表',
 firmAppendix:'更多附錄',
 firmIndex:'主要財(cái)務(wù)指標(biāo)',
 firmAnalysis:'對比分析',
 firmNews:'新聞事件檔案',
 firmOther:'其他功能',
}

en.js 英文語言包:

export const lang = {
 homeOverview:'Home overview',
 firmOverview:'firmOverview',
 firmReports:'firmReports',
 firmAppendix:'firmAppendix',
 firmIndex:'firmIndex',
 firmAnalysis:'firmAnalysis',
 firmNews:'firmNews',
 firmOther:'firmOther'
}

4、按鈕控制切換語言

this.$i18n.locale,當(dāng)你賦值為‘zh-CN'時(shí),導(dǎo)航欄就變成中文;當(dāng)賦值為 ‘en-US'時(shí),就變成英文:

<div class="top_btn" @click="changeLangEvent">中文</div>
changeLangEvent() {
  console.log('changeLangEvent');
  this.$confirm('確定切換語言嗎?', '提示', {
   confirmButtonText: '確定',
   cancelButtonText: '取消',
   type: 'warning'
  }).then(() => {
   if ( this.$i18n.locale === 'zh-CN' ) {
    this.$i18n.locale = 'en-US';//關(guān)鍵語句
    console.log('en-US')
   }else {
    this.$i18n.locale = 'zh-CN';//關(guān)鍵語句
    console.log('zh-CN')
   }
  }).catch(() => {
   console.log('catch');
   this.$message({
    type: 'info',
   });
  });
 }

5、模板渲染

靜態(tài)渲染:

<span v-text="$t('lang .homeOverview')"></span>
<span>{{$t('lang .homeOverview')}}</span>

如果是element-ui 的,在要翻譯的前面加上冒號

比如:label="用戶姓名" 就改成 :label="$t('order.userName')"

動態(tài)渲染:

<span class="el-dropdown-link">{{navCompany}}</span>
 computed:{
   navCompany:function(){
    if(this.nav_company){
     let str = 'lang'+this.nav_company;
     return this.$t(str);
    }
   }
},
    
 <el-submenu
      v-for="(value, title1, one) in navList"
      :key="one+1"
      :index="(one+1).toString()">

   <template slot="title">
    <router-link :to="linkList[title1]">{{ getTitle(title1) }}</router-link>
   </template>
       
</el-submenu>

methods: {
  getTitle(title){
    let str = 'lang.'+title;
    return this.$t(str);
  }
}

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI