rudeshark.net/src/client/app/auth/script.ts
2018-04-16 06:31:56 +09:00

31 lines
421 B
TypeScript

/**
* 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);
});