• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

vue后台管理添加多语言功能的实现示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

在这家公司一个项目, 需要添加英文版本,就是中英文化了,直接上代码

1.首先是main.js页面做配置

import VueI18n from 'vue-i18n'
Vue.use(VueI18n) // 通过插件的形式挂载
const i18n = new VueI18n({
    //locale: 'zh-CN',    // 语言标识
    locale: 'Chinese',    // 语言标识
    //this.$i18n.locale // 通过切换locale的值来实现语言切换
    messages: {
      'Chinese': require('./common/lang/zh'),   // 中文语言包
      'English': require('./common/lang/en')    // 英文语言包
    },
    //隐藏警告
    silentTranslationWarn: true
})

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

2.配置相应路径下的语言包,在这儿只显示部分代码,需要什么在这儿添加什么即可

en.js
export const m = { 
    deviceCode: 'Device Code',//设备编码
    deviceName: 'Device Name',//设备名称
    deviceType: 'Device Type',//设备类型
    denial: 'Denial',//拒止
    camera: 'Camera',//摄像机
  } 

zh.js
export const m = {
  deviceCode: '设备编码',//设备编码
  deviceName: '设备名称',//设备名称
  deviceType: '设备类型',//设备类型
  denial: '拒止',//拒止
  camera: '摄像机',//摄像机
}

3.页面中使用,不同的地方使用,写法略有不同

(1)placeholder和按钮的写法
<el-row :gutter="30">
    <el-col :span="4">
        <div class="grid-content bg-purple">
              <el-input v-model="value0" :placeholder="$t('m.placeOne')"></el-input>
         </div>
     </el-col>
      <el-col :span="8">
         <div class="grid-content bg-purple">
              <el-button @click="searchData()" type="primary" icon="el-icon-search">{{ $t('m.query') }}</el-button> 
              <el-button @click="dialogVisible = true" type="warning">{{ $t('m.AddDevice') }}</el-button>
          </div>
    </el-col>
</el-row>(2)table的写法

<el-table
    :data="tableData"
     stripe
   style="width: 100%;">
         <el-table-column
              prop="areaName"
              :label="$t('m.areaName')"
              width="100">
          </el-table-column>
</el-table>

(3)子组件弹框写法

<el-dialog :title="$t('m.Ediedevice')" :visible.sync="dialogVisibles" width="30%" :before-close="handleClose" :close-on-click-modal=false>
     <edit-equipment @subsuccess="subsuccess" :editDate="editDate" style="overflow: hidden;"></edit-equipment>
 </el-dialog>
(4)js中拼接字符串写法

strHtml = strHtml + "<td>"+this.$i18n.t('m.deviceCode')+":</td>";

以上就是vue后台管理添加多语言功能的实现示例的详细内容,更多关于vue后台管理添加多语言功能的资料请关注极客世界其它相关文章!


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
如何在vue项目中使用百度地图API发布时间:2022-02-05
下一篇:
JavaScript数据类型相关知识详解发布时间:2022-02-05
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap