vuex-i18n concat json files: If you developing a component library and you want to decouple it from the app:
- Create seperate lang.json file
- require it in i18n/index.js
- concat with others
const defaultEn = require("./en.json");
const appkitEn = require("@/components/theme/appkit/i18n/en.json");