Sharkey/src/client/app/auth/script.ts

32 lines
439 B
TypeScript
Raw Normal View History

2018-02-27 17:11:28 +02:00
/**
* Authorize Form
*/
2018-04-16 00:31:56 +03:00
import VueRouter from 'vue-router';
2018-02-27 17:11:28 +02:00
// Style
import './style.styl';
import init from '../init';
import Index from './views/index.vue';
/**
* init
*/
2018-04-16 00:31:56 +03:00
init(launch => {
2018-02-27 17:11:28 +02:00
document.title = 'Misskey | アプリの連携';
2018-04-16 00:31:56 +03:00
// Init router
const router = new VueRouter({
mode: 'history',
2018-05-29 17:56:44 +03:00
base: '/auth/',
2018-04-16 00:31:56 +03:00
routes: [
{ path: '/:token', component: Index },
]
});
2018-02-27 17:11:28 +02:00
2018-04-16 00:31:56 +03:00
// Launch the app
launch(router);
2018-02-27 17:11:28 +02:00
});