blob: 20f59bf0339c80f1acedcce4243d200b026634d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/**
* Authorize Form
*/
import VueRouter from 'vue-router';
// Style
import './style.styl';
import init from '../init';
import Index from './views/index.vue';
/**
* init
*/
init(launch => {
document.title = 'Misskey | アプリの連携';
// Init router
const router = new VueRouter({
mode: 'history',
routes: [
{ path: '/:token', component: Index },
]
});
// Launch the app
launch(router);
});
|