iceshrimp-legacy/src/client/app/admin/script.ts

30 lines
483 B
TypeScript
Raw Normal View History

2018-11-02 15:05:53 +01:00
/**
* Admin
*/
import VueRouter from 'vue-router';
// Style
import './style.styl';
import init from '../init';
import Index from './views/index.vue';
2018-12-27 12:22:54 +01:00
import NotFound from '../common/views/pages/not-found.vue';
2018-11-02 15:05:53 +01:00
init(launch => {
document.title = 'Admin';
// Init router
const router = new VueRouter({
mode: 'history',
base: '/admin/',
routes: [
{ path: '/', component: Index },
{ path: '*', component: NotFound }
2018-11-02 15:05:53 +01:00
]
});
// Launch the app
launch(router);
});