开源软件名称(OpenSource Name):valterlorran/vuejs-localization开源软件地址(OpenSource Url):https://github.com/valterlorran/vuejs-localization开源编程语言(OpenSource Language):JavaScript 100.0%开源软件介绍(OpenSource Introduction):vuejs-localizationInstallation
Setupvar Vue = require('vue');
var Lang = require('vuejs-localization');
//Notice that you need to specify the lang folder, in this case './lang'
Lang.requireAll(require.context('./lang', true, /\.js$/));
Vue.use(Lang); Lang Folder└── lang
├── en
| └──messages.js
└── pt
└──messages.js Lang file//messages.js
module.exports = {
hello_world : 'Hello World!'
} Usage$lang.{file}.{key} <h1>{{$lang.messages.hello_world}}</h1> Results in: <h1>Hello World</h1> Change localization (reactive)//inside vue instance
this.$lang.setLang('pt') |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论