Bourgeon is wrapping vue-i18n plugin. You can follow the documentation
Create one file per language in /src/locales/[lang].yml
Locale files are simply pair of key values written in YAML that can also be nested:
messages:
welcome: Welcome to your Bourgeon app!
locales:
fr: French
en: English
Pass an array of locales to the plugin
Vue.use(i18n, ['en', 'fr'])
<p></p>
See the documentation here
The wrapper inject a few properties and methods in the component instances
Current lang in use. For example : en
. You can set it to globally update locale in use.
Read-only returns an array of locales (the same passed as an argument in Vue.use
)
Helper that set this.lang
to be used in a template
<button @click="setLang(lang)" v-for="lang in locales"></button>
Helper that test if argument is current lang.