4
2
Fork 0
app/src/store/store.js

15 lines
250 B
JavaScript
Raw Normal View History

import { createStore } from 'vuex'
import state from './state';
2021-01-08 15:16:47 +00:00
import getters from './getters';
import mutations from './mutations';
import actions from './actions'
export const store = createStore({
state,
getters,
mutations,
actions
})