This commit is contained in:
2020-11-25 16:19:00 +01:00
commit 6a28b8f225
17 changed files with 12162 additions and 0 deletions

15
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: {
}
})