4
2
mirror of https://github.com/getbible/app.git synced 2024-05-29 17:10:49 +00:00
app/src/store/store.js
2021-01-08 17:16:47 +02:00

15 lines
250 B
JavaScript

import { createStore } from 'vuex'
import state from './state';
import getters from './getters';
import mutations from './mutations';
import actions from './actions'
export const store = createStore({
state,
getters,
mutations,
actions
})