This commit is contained in:
Thomas
2020-07-23 16:51:34 +02:00
commit 0ef9ba675b
44 changed files with 13406 additions and 0 deletions

15
client/src/store/index.js Normal file
View File

@@ -0,0 +1,15 @@
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state: {
},
mutations: {
},
actions: {
},
modules: {
}
})