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

26 lines
353 B
TypeScript
Raw Normal View History

2018-02-27 17:11:28 +02:00
/**
* 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 },
]);
});