4
2
mirror of https://github.com/getbible/app.git synced 2024-05-28 16:40:48 +00:00
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
})