@iwotech/i18n-remote
v1.1.2
Published
### 使用示例 ```js import i18n,{ setLocale, remoteText } from '@iwotech/i18n-remote'
Downloads
7
Readme
远程文字多语言处理
使用示例
import i18n,{ setLocale, remoteText } from '@iwotech/i18n-remote'
// i18n 内部vue-i18n实例
// 设置语言
setLocale('zh-CN')
// 获取文本(具有响应式,可在 template 中使用)
remoteText('key')
// Vue
// export default {
// methods:{
// remoteText
// }
// }