wip on app2

This commit is contained in:
2022-06-23 12:26:48 +02:00
parent 6b3b010631
commit d8f80f3d02
44 changed files with 545 additions and 358 deletions

View File

@@ -0,0 +1,18 @@
import { createApp } from 'vue';
//import { _createI18n } from 'ChillMainAssets/vuejs/_js/i18n'
//import { appMessages } from './i18n'
import futureStore, {key} from './store/index'
import App2 from './App2.vue';
futureStore().then((store) => {
//const i18n = _createI18n(appMessages);
const app = createApp({
template: `<app></app>`,
})
.use(store, key)
//.use(i18n)
.component('app', App2)
.mount('#myCalendar');
});