summaryrefslogtreecommitdiff
path: root/src/client/app/auth/script.ts
blob: 31c758ebc2b389c888a58077127a1a188c56be80 (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
/**
 * Authorize Form
 */

// Style
import './style.styl';

import init from '../init';

import Index from './views/index.vue';

/**
 * init
 */
init(async (launch) => {
	document.title = 'Misskey | アプリの連携';

	// Launch the app
	const [app] = launch();

	// Routing
	app.$router.addRoutes([
		{ path: '/:token', component: Index },
	]);
});