diff --git a/web/src/store/index.js b/web/src/store/index.js index dc1838f..24b6552 100644 --- a/web/src/store/index.js +++ b/web/src/store/index.js @@ -1,5 +1,6 @@ import { createStore } from 'vuex' -import dashboard from './dashboard/index.js' +import dashboard from './dashboard/index' +import budget from './budget/index' const store = createStore({ state () { @@ -27,7 +28,8 @@ const store = createStore({ } }, modules: { - dashboard + dashboard, + budget } })