Add budget module to store

This commit is contained in:
Jan Bader 2022-01-23 22:24:40 +00:00
parent e26bb257cc
commit 27298a9860

View File

@ -1,5 +1,6 @@
import { createStore } from 'vuex' import { createStore } from 'vuex'
import dashboard from './dashboard/index.js' import dashboard from './dashboard/index'
import budget from './budget/index'
const store = createStore({ const store = createStore({
state () { state () {
@ -27,7 +28,8 @@ const store = createStore({
} }
}, },
modules: { modules: {
dashboard dashboard,
budget
} }
}) })