
this repo was created by running `vue create byjove` and then: use defaults? Manually select features features needed: Router, Vuex use history mode for router? Yes where to place config? In dedicated config files save as preset? No (and then i had to edit commit msg to add the above)
17 lines
153 B
JavaScript
17 lines
153 B
JavaScript
import Vue from 'vue'
|
|
import Vuex from 'vuex'
|
|
|
|
Vue.use(Vuex)
|
|
|
|
export default new Vuex.Store({
|
|
state: {
|
|
|
|
},
|
|
mutations: {
|
|
|
|
},
|
|
actions: {
|
|
|
|
}
|
|
})
|