summaryrefslogtreecommitdiff
path: root/src/web/app/dev/script.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/app/dev/script.ts')
-rw-r--r--src/web/app/dev/script.ts18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/web/app/dev/script.ts b/src/web/app/dev/script.ts
index bb43411195..757bfca490 100644
--- a/src/web/app/dev/script.ts
+++ b/src/web/app/dev/script.ts
@@ -5,11 +5,25 @@
// Style
import './style.styl';
-require('./tags');
import init from '../init';
+import Index from './views/index.vue';
+import Apps from './views/apps.vue';
+import AppNew from './views/new-app.vue';
+import App from './views/app.vue';
+
/**
* init
*/
-init(() => {
+init(launch => {
+ // Launch the app
+ const [app] = launch();
+
+ // Routing
+ app.$router.addRoutes([
+ { path: '/', component: Index },
+ { path: '/app', component: Apps },
+ { path: '/app/new', component: AppNew },
+ { path: '/app/:id', component: App },
+ ]);
});