Kouty
Kouty
@falkartis ``` ERROR in ./src/App.vue Module not found: Error: Can't resolve '@kazupon/vue-i18n-loader' in '/my/project/path/src' @ ./src/App.vue 21:18-131 @ ./src/main.js @ multi (webpack)-dev-server/client?http://localhost:8080 webpack/hot/dev-server ./src/main.js ``` The error above gives us...
Sorry for the late answer. It seems that vue i18n is designed to be used in 2 ways: - Global: when you setup VueI18n you can pass `messages` option with...
You need to change locale (`this.$i18n.locale = val`) only in the root component. It will change the translations on all subcomponents. In your exaple, when the locale is changed in...
Indeed there is. ``` ... ... ```
Hoping that this may help others: in our case the memory leak was caused by **global Vue.mixin({...}) inside custom plugins**. The correct implementation of a global mixin is here: https://nuxtjs.org/docs/2.x/directory-structure/plugins/#global-mixins...