adding show/edit links (prepare modal) + save button

This commit is contained in:
2021-04-28 13:59:37 +02:00
parent 4bb3eadf91
commit 94e494361f
6 changed files with 64 additions and 21 deletions

View File

@@ -1,11 +1,11 @@
import { createApp } from 'vue'
import { createI18n } from 'vue-i18n'
import { datetimeFormats, messages } from './js/i18n'
import createStore from './store'
import { getDataPromise, postDataPromise } from './store'
import App from './App.vue';
createStore.then(store => {
getDataPromise.then(store => {
//console.log('store in create_store', store);
console.log('store accompanyingCourse', store.state.accompanying_course);
@@ -24,4 +24,5 @@ createStore.then(store => {
.use(i18n)
.component('app', App)
.mount('#accompanying-course');
});