You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
304 B
15 lines
304 B
import Vue from 'vue';
|
|
import App from './App.vue';
|
|
Vue.config.productionTip = false;
|
|
import router from './router';
|
|
|
|
import VueI18n from 'vue-i18n';
|
|
Vue.use(VueI18n);
|
|
|
|
const i18n = new VueI18n({
|
|
locale: 'en',
|
|
fallbackLocale: 'en',
|
|
});
|
|
|
|
new Vue({ i18n, router, render: (h) => h(App) }).$mount('#app');
|