08142ead67
* Update ja-JP.yml * Create 404.vue * Update script.ts * Update script.ts * Update script.ts * Update script.ts * Update script.ts * Update script.ts * Update 404.vue * Update meta.ts * Update instance.vue * Update update-meta.ts
30 lines
479 B
TypeScript
30 lines
479 B
TypeScript
/**
|
|
* Authorize Form
|
|
*/
|
|
|
|
import VueRouter from 'vue-router';
|
|
|
|
// Style
|
|
import './style.styl';
|
|
|
|
import init from '../init';
|
|
import Index from './views/index.vue';
|
|
import NotFound from '../common/views/pages/404.vue';
|
|
|
|
/**
|
|
* init
|
|
*/
|
|
init(launch => {
|
|
// Init router
|
|
const router = new VueRouter({
|
|
mode: 'history',
|
|
base: '/auth/',
|
|
routes: [
|
|
{ path: '/:token', component: Index },
|
|
{ path: '*', component: NotFound }
|
|
]
|
|
});
|
|
|
|
// Launch the app
|
|
launch(router);
|
|
});
|