mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
21 lines
435 B
JavaScript
21 lines
435 B
JavaScript
import { createApp } from 'vue'
|
|
import { _createI18n } from 'ChillMainAssets/vuejs/_js/i18n'
|
|
import { addressMessages } from './js/i18n'
|
|
import { getDataPromise } from './store'
|
|
|
|
import App from './App.vue';
|
|
|
|
getDataPromise.then(store => {
|
|
|
|
const i18n = _createI18n(addressMessages);
|
|
|
|
const app = createApp({
|
|
template: `<app></app>`,
|
|
})
|
|
.use(store)
|
|
.use(i18n)
|
|
.component('app', App)
|
|
.mount('#address');
|
|
|
|
});
|