mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-02 21:26:42 +01:00
15 lines
325 B
JavaScript
Vendored
15 lines
325 B
JavaScript
Vendored
import Vue from 'vue'
|
|
import VueInternationalization from 'vue-i18n';
|
|
import Locale from './locales';
|
|
|
|
Vue.use(VueInternationalization);
|
|
|
|
// const lang = document.documentElement.lang.substr(0, 2);
|
|
const lang = 'en';
|
|
|
|
const i18n = new VueInternationalization({
|
|
locale: lang,
|
|
messages: Locale
|
|
});
|
|
|
|
export default i18n |