This commit is contained in:
syuilo 2018-04-16 06:31:56 +09:00
parent 53f8428d4d
commit 51ed3a6fad

View file

@ -2,6 +2,8 @@
* Authorize Form * Authorize Form
*/ */
import VueRouter from 'vue-router';
// Style // Style
import './style.styl'; import './style.styl';
@ -12,14 +14,17 @@ import Index from './views/index.vue';
/** /**
* init * init
*/ */
init(async (launch) => { init(launch => {
document.title = 'Misskey | アプリの連携'; document.title = 'Misskey | アプリの連携';
// Launch the app // Init router
const [app] = launch(); const router = new VueRouter({
mode: 'history',
routes: [
{ path: '/:token', component: Index },
]
});
// Routing // Launch the app
app.$router.addRoutes([ launch(router);
{ path: '/:token', component: Index },
]);
}); });