This commit is contained in:
Matthieu Bessat 2020-07-03 09:29:50 +02:00
commit 207aa3a081
38 changed files with 9767 additions and 0 deletions

15
src/store/index.ts 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: {
}
})