From 27298a9860caf67fcfd13323827f9dfdf5689375 Mon Sep 17 00:00:00 2001 From: Jan Bader Date: Sun, 23 Jan 2022 22:24:40 +0000 Subject: [PATCH] Add budget module to store --- web/src/store/index.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 } })