yumechi-no-kuni/src/client/app/auth/script.ts
2018-11-14 01:32:38 +09:00

28 lines
387 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 => {
// Init router
const router = new VueRouter({
mode: 'history',
base: '/auth/',
routes: [
{ path: '/:token', component: Index },
]
});
// Launch the app
launch(router);
});