当前位置:   article > 正文

vue多语言转换的几种方法_language-tw-loader

language-tw-loader

一、静态转换

  • 使用 Vue 插件 language-tw-loader
  • 在打包时把本地的文字转换成繁体,动态加载的文字不会转换。也就是说接口返回的文字不会自动转换。
  • 打包后无法再切换为简体。除非专门打一个简体的包。

使用方式

1、安装插件

npm i language-tw-loader --save

2、修改 webpack 配置文件webpack.base.conf.js

  1. module: {
  2. rules: [
  3. ......
  4. {
  5. test: /\.(js|vue)$/,
  6. loader: 'language-tw-loader',
  7. }
  8. ]
  9. }

3、打包或者运行

npm run dev

此方法不适用于vue-cli3 

二、vue-i18n按字查询替换

1、安装

npm install vue-i18n

2、然后在我们的项目中的statics文件夹下面添加i18n文件夹,然后在文件夹中新建我们的json格式的语言包目录大致为:

en.js

  1. module.exports = {
  2. login:{
  3. 'title' : 'this title',
  4. 'username' : 'Please enter the user name',
  5. 'password' : 'Please enter your password',
  6. },
  7. }

zh.js

  1. module.exports = {
  2. login:{
  3. 'title' : '标题',
  4. 'username' : '请输入用户名',
  5. 'password' : '请输入密码',
  6. },
  7. }

在i18n.js中引入i18n和语言包

  1. import Vue from 'vue'
  2. import VueI18n from 'vue-i18n'
  3. Vue.use(VueI18n)
  4. // 以下为语言包单独设置的场景,单独设置时语言包需单独引入
  5. const messages = {
  6. 'zh_CN': require('../statics/i18n/zh'), // 中文语言包
  7. 'en_US': require('../statics/i18n/en') // 英文语言包
  8. }
  9. // 最后 export default,这一步肯定要写的。
  10. export default new VueI18n({
  11. locale : 'en', // set locale 默认显示英文
  12. messages : messages // set locale messages
  13. })

然后在main.js中挂载至入口文件

  1. - main.js
  2. //注意,因为我们index.js中把i18n绑定到了window,所以要在第一个引入
  3. import i18n from './locales'
  4. import Vue from 'vue'
  5. import App from './App.vue'
  6. import './common.scss'
  7. const app = new Vue({
  8. components: {
  9. App
  10. },
  11. i18n,
  12. render: h => h(App),
  13. });

使用

  1. <template>
  2. <div id="pageDiv">
  3. <section class="content">
  4. <h3>{{$t("login.title")}}</h3>
  5. <button @click='langToggle'>切换语言</button>
  6. </section>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. };
  14. methods: {
  15. langToggle(){
  16. if(this.$i18n.locale == 'zh_CN'){
  17. this.$i18n.locale = 'en_US';
  18. }else{
  19. this.$i18n.locale = 'zh_CN';
  20. }
  21. console.log(this.$i18n.locale)
  22. }
  23. },
  24. mounted(){
  25. },
  26. created() {
  27. }
  28. };
  29. </script>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/332235
推荐阅读
  

闽ICP备14008679号