[Vuejs]-Internationalization with vue-i18n plugin

0👍

vuex-i18n exposes $i18n.set(), so you should be able to do something like this: <button @click="$i18n.set('en')">en</button>in your template.

Leave a comment