Sharkey/src/web/app/auth/script.ts
syuilo dbc421cb57 ✌️
2018-02-28 00:11:28 +09:00

26 lines
353 B
TypeScript

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