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 <dixsie@ibm.com>
Change-Id: I1ba02cf567babc67c7a5b1c5148d49ae19108faa
diff --git a/src/router/index.js b/src/router/index.js
index ce792cb..3f447de 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -4,8 +4,8 @@
 //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);