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

import VueRouter from 'vue-router';

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

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

/**
 * init
 */
init(launch => {
	// Init router
	const router = new VueRouter({
		mode: 'history',
		base: '/auth/',
		routes: [
			{ path: '/:token', component: Index },
		]
	});

	// Launch the app
	launch(router);
});