rudeshark.net/src/web/app/dev/script.ts

30 lines
524 B
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* Developer Center
*/
2017-02-19 04:31:23 +01:00
// Style
2017-02-19 07:36:53 +01:00
import './style.styl';
2017-02-19 04:31:23 +01:00
2017-05-17 22:06:55 +02:00
import init from '../init';
2016-12-28 23:49:51 +01:00
2018-02-27 16:11:28 +01:00
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';
2016-12-28 23:49:51 +01:00
/**
2017-05-17 22:06:55 +02:00
* init
2016-12-28 23:49:51 +01:00
*/
2018-02-27 16:11:28 +01:00
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 },
]);
2016-12-28 23:49:51 +01:00
});