vue-i 18 n中英語の切り替えを実現する方法
1915 ワード
1.ダウンロード
npm install vue-188 n
2.作成中の英語パッケージ
2.1中国語パッケージ
2.2英語のカバン
3.メールに導入する
npm install vue-188 n
2.作成中の英語パッケージ
2.1中国語パッケージ
2.2英語のカバン
3.メールに導入する
import VueI18n from "vue-i18n";
Vue.use(VueI18n);
const i18n = new VueI18n({
locale:
localStorage.getItem("lang") == (undefined || "" || null)
? "zh"
: localStorage.getItem("lang"),
messages: {
zh: require("../static/lang/text-zh.json"),
en: require("../static/lang/text-en.json")
}
});
new Vue({
router,
store,
i18n,
render: h => h(App)
}).$mount("#app");
4.コンポーネントで使用する
<div>{{ $t('footer.home') }}</div>
<input type="span" value="" :placeholder="$t('footer.home')" v-model="search" />
this.$toast(this.$t('footer.home'))
5.ボタンを使って手動で切り替えます。ここではスノースイッチを使って、trueとfalseで中国語を識別します。この方法で他の言語の切り替えにも使えます。
<switch @change="changeEn" :checked="zhOren" />
changeEn(e) {
if (e.target.value) {
//
this._i18n.locale = 'zh';
localStorage.setItem('lang', 'zh');
} else {
//
this._i18n.locale = 'en';
localStorage.setItem('lang', 'en');
}
}
以上がevue-i 18 nの中で英語の切り替えの方法の詳細です。vueの中で英語の切り替えに関する資料は他の関連記事に注目してください。