edit location on existing ranges

This commit is contained in:
2022-06-29 23:47:12 +02:00
parent adad4313a6
commit 9e93e2a3f9
7 changed files with 144 additions and 49 deletions

View File

@@ -1,18 +1,18 @@
import { createApp } from 'vue';
//import { _createI18n } from 'ChillMainAssets/vuejs/_js/i18n'
//import { appMessages } from './i18n'
import { _createI18n } from '../../../../../ChillMainBundle/Resources/public/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 i18n = _createI18n(appMessages);
const app = createApp({
template: `<app></app>`,
})
.use(store, key)
//.use(i18n)
.use(i18n)
.component('app', App2)
.mount('#myCalendar');
});