From 0a5b9c6dcd063144896dbdc42f24c681b8b9267c Mon Sep 17 00:00:00 2001 From: Dixsie Wolmers Date: Tue, 20 Oct 2020 10:52:56 -0500 Subject: Fix imports on router index UI failed to load when routes were imported before store in router index. Store should be imported before routes for UI to load correctly. Signed-off-by: Dixsie Wolmers Change-Id: I1ba02cf567babc67c7a5b1c5148d49ae19108faa --- src/router/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/router') diff --git a/src/router/index.js b/src/router/index.js index ce792cb7..3f447de3 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -4,8 +4,8 @@ import VueRouter from 'vue-router'; //Do not change store or routes import. //Exact match alias set to support //dotenv customizations. -import routes from './routes'; import store from '../store'; +import routes from './routes'; Vue.use(VueRouter); -- cgit v1.2.3