Sharkey/src/client/app/dev/script.ts

47 lines
960 B
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Developer Center
*/
2018-02-27 22:43:14 +02:00
import Vue from 'vue';
2018-03-27 08:13:12 +03:00
import VueRouter from 'vue-router';
2018-02-27 22:43:14 +02:00
import BootstrapVue from 'bootstrap-vue';
import 'bootstrap/dist/css/bootstrap.css';
import 'bootstrap-vue/dist/bootstrap-vue.css';
2017-02-19 05:31:23 +02:00
// Style
2017-02-19 08:36:53 +02:00
import './style.styl';
2017-02-19 05:31:23 +02:00
2017-05-17 23:06:55 +03:00
import init from '../init';
2016-12-29 00:49:51 +02:00
2018-02-27 17:11:28 +02: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';
2018-02-27 22:43:14 +02:00
import ui from './views/ui.vue';
2018-12-27 13:22:54 +02:00
import NotFound from '../common/views/pages/not-found.vue';
2018-02-27 22:43:14 +02:00
Vue.use(BootstrapVue);
Vue.component('mk-ui', ui);
2018-02-27 17:11:28 +02:00
2016-12-29 00:49:51 +02:00
/**
2017-05-17 23:06:55 +03:00
* init
2016-12-29 00:49:51 +02:00
*/
2018-02-27 17:11:28 +02:00
init(launch => {
2018-03-27 08:13:12 +03:00
// Init router
const router = new VueRouter({
mode: 'history',
base: '/dev/',
routes: [
{ path: '/', component: Index },
{ path: '/apps', component: Apps },
{ path: '/app/new', component: AppNew },
{ path: '/app/:id', component: App },
{ path: '*', component: NotFound }
2018-03-27 08:13:12 +03:00
]
});
2018-02-27 17:11:28 +02:00
// Launch the app
2018-03-27 08:13:12 +03:00
launch(router);
2016-12-29 00:49:51 +02:00
});