+
+
+
+
+
+
diff --git a/client/src/router.js b/client/src/router.js
index 3b98021..bc407e3 100644
--- a/client/src/router.js
+++ b/client/src/router.js
@@ -8,25 +8,14 @@ function load (component) {
}
export default new VueRouter({
- /*
- * NOTE! VueRouter "history" mode DOESN'T works for Cordova builds,
- * it is only to be used only for websites.
- *
- * If you decide to go with "history" mode, please also open /config/index.js
- * and set "build.publicPath" to something other than an empty string.
- * Example: '/' instead of current ''
- *
- * If switching back to default "hash" mode, don't forget to set the
- * build publicPath back to '' so Cordova builds work again.
- */
-
routes: [
{
path: '/',
component: load('Index'),
children: [
{ path: '', component: load('index/main') },
- { path: 'foo', component: load('index/foo') }
+ { path: 'login', component: load('index/login') },
+ { path: 'register', component: load('index/register') }
]
}
]