之前一直用vue-i18n,后来发现$t始终出不来。
最后使用了vuex-i18n,$t()可以用this.$i18n.translate()来代替,总算暂时解决了多语言问题。纠结了我好久
ps:可能vue-i18n也有$t的替代方法,可是文档内容太多看花眼了
main.js
import Vue from 'vue'
import App from './App'
import store from './store'
import vuexI18n from 'vuex-i18n';
Vue.use(vuexI18n.plugin, store);
const translationsEn = {
"content": "This is some {type} content"
};
const translationsDe = {
"content": "Dies ist ein toller Inhalt",
};
// add translations directly to the application
Vue.i18n.add('en', translationsEn);
Vue.i18n.add('de', translationsDe);
// set the start locale to use
Vue.i18n.set('de');
Vue.config.productionTip = false
Vue.prototype.$store = store
App.mpType = 'app'
const app = new Vue({
store,
...App,
})
app.$mount()
index.vue
<template>
<view class="content">
<text class="title">{{title}}=>{{t_content}}</text>
<button type="primary" @tap="ddd">button</button>
</view>
</template>
<script>
export default {
data: {
title: 'Hello',
cur_lang: 'en'
},
computed:{
t_content(){
return this.$i18n.translate('content')
}
},
methods:{
ddd(){
console.log(1122)
console.log(this.$i18n.translate('content'))
}
}
}
</script>
<style>
.content {
flex: 1;
justify-content: center;
align-items: center;
}
.title {
font-size: 36px;
color: #8f8f94;
}
</style>
6 个评论
要回复文章请先登录或注册
2***@qq.com
2***@qq.com
2***@qq.com
g***@163.com
9***@qq.com
9***@qq.com