mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 11:43:09 +02:00
25 lines
466 B
TypeScript
25 lines
466 B
TypeScript
import VueRouter from 'vue-router';
|
|
|
|
// Style
|
|
import './style.styl';
|
|
|
|
import init from '../init';
|
|
import Index from './views/index.vue';
|
|
import NotFound from '../common/views/pages/not-found.vue';
|
|
|
|
init(launch => {
|
|
document.title = 'Misskey';
|
|
|
|
// Init router
|
|
const router = new VueRouter({
|
|
mode: 'history',
|
|
base: '/test/',
|
|
routes: [
|
|
{ path: '/', component: Index },
|
|
{ path: '*', component: NotFound }
|
|
]
|
|
});
|
|
|
|
// Launch the app
|
|
launch(router);
|
|
});
|