Sharkey/src/web/app/dev/script.ts
syuilo dbc421cb57 ✌️
2018-02-28 00:11:28 +09:00

30 lines
524 B
TypeScript

/**
* Developer Center
*/
// Style
import './style.styl';
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(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 },
]);
});