i18n在4種常見環境下使用的方式

一、html
 
html使用方式是最多見的,直接寫成 {{$t('xxx.xxxx')}},渲染是會自動去翻譯腳本里面進行匹配
 
若是我翻譯腳本是
 
xxx:{
 
xxxx:'hello'
 
}
 
{{$t('xxx.xxxx')}}渲染出來就是:hello
 
二、js
 
js中應該加上指針this,即this.$t('xxx.xxxx')
 
三、element-ui
 
若是是element-ui 的,在要翻譯的前面加上冒號
 
好比:label="hello"改爲 :label="$t('xxx.xxxx')"
 
 
 
 
 
 
 
五、router  --- 路由源中實現國際化
直接在路由源value中寫i8n中的自定義語言
相關文章
相關標籤/搜索