From 9e3dde8076bcfd2f4cb34e97386c060fc994750d Mon Sep 17 00:00:00 2001 From: Jan Bader Date: Tue, 25 Jan 2022 20:58:32 +0000 Subject: [PATCH] Rename module --- web/src/store/index.js | 2 +- web/src/store/{dashboard/index.js => modules/dashboard.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename web/src/store/{dashboard/index.js => modules/dashboard.js} (100%) diff --git a/web/src/store/index.js b/web/src/store/index.js index 6a7fe0a..744776a 100644 --- a/web/src/store/index.js +++ b/web/src/store/index.js @@ -1,5 +1,5 @@ import { createStore } from 'vuex' -import dashboard from './dashboard/index' +import dashboard from './modules/dashboard' import { LOGIN_SUCCESS, LOGOUT, TITLE } from './mutation-types' const store = createStore({ diff --git a/web/src/store/dashboard/index.js b/web/src/store/modules/dashboard.js similarity index 100% rename from web/src/store/dashboard/index.js rename to web/src/store/modules/dashboard.js