1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

Localization support

This commit is contained in:
2020-05-25 15:37:59 +02:00
parent 755c34f782
commit 6fd9884d0b
19 changed files with 169 additions and 56 deletions

View File

@ -0,0 +1,12 @@
import Vue from 'vue';
import VueI18n from 'vue-i18n';
Vue.use(VueI18n);
const i18n = new VueI18n({
messages: {
'en-US': require('./en-US'),
'it-IT': require('./it-IT')
}
});
export default i18n;