mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 22:20:52 +00:00
18 lines
317 B
JavaScript
18 lines
317 B
JavaScript
|
|
import Vue from 'vue';
|
||
|
|
import VueI18n from 'vue-i18n';
|
||
|
|
|
||
|
|
import App from './App.vue';
|
||
|
|
import i18nSettings from './i18n.js';
|
||
|
|
import router from './router.js';
|
||
|
|
|
||
|
|
Vue.use(VueI18n);
|
||
|
|
const i18n = new VueI18n(i18nSettings);
|
||
|
|
|
||
|
|
new Vue({
|
||
|
|
el: '#app',
|
||
|
|
router,
|
||
|
|
i18n,
|
||
|
|
template: '<App/>',
|
||
|
|
components: { App }
|
||
|
|
});
|