前言
使用方法
安装
github地址: smart-vue-i18n
yarn add smart-vue-i18n
初始化
// 插件方式引用
// messages 为语言库
import { messages } from '@/utils/i18n-message/open-account/apply/index.js'
import i18n from 'smart-vue-i18n'
Vue.use(i18n, {
lang: 'zhCHT',
messages
})
语言库格式
// 语言库格式
import { zhCHS } from './zh-chs'
import { zhCHT } from './zh-cht'
export const messages = {
//简体中文
zhCHS,
//繁体中文
zhCHT
}
// './zh-chs'
export const zhCHS = {
personalInfo: '个人资料',
}
// './zh-cht'
export const zhCHT = {
personalInfo: '個人資料',
}
组件内使用
<template lang="pug">
yx-container.apply-home
.apply-main(slot="main")
.personalInfo {{$t('personalInfo')}}
.apply-main-add-credit(@click="testHandler") {{$t('test.a')}}
</template>
<script>
export default {
i18n: {
zhCHS: {
test: {
a: '简体'
}
},
zhCHT: {
test: {
a: '简体'
}
}
},
methods: {
testHandler() {
this.$i18n.setLang(this.$i18n.lang === 'zhCHS' ? 'zhCHT' : 'zhCHS')
console.log(this, this.$i18n.lang)
}
}
}
</script>
原理解析
核心代码
const _vm = new Vue({
data: options
})
Object.defineProperty(Vue.prototype.$i18n, 'lang', {
get() {
return _vm.lang
}
})
将多语言挂载到vue原型上
然后 Object.defineProperty
监听Vue.prototype.$i18n
变化
通过new Vue()
创建实例来实现语言切换实时渲染,可以不需要刷新页面
其他
时间仓促,一些常用的功能暂时没有,后续加上
欢迎使用并提出意见