japan-2023/src/routes.js
2022-11-20 20:11:01 +08:00

11 lines
380 B
JavaScript

import HomePage from '@/pages/HomePage'
import NotFoundPage from '@/pages/NotFoundPage'
import SchedulePage from '@/pages/SchedulePage'
const routes = [
{ path: '/', name: 'Home', component: HomePage },
{ path: '/schedule/:date', name: 'Schedule', component: SchedulePage },
{ path: '/:pathMatch(.*)*', name: 'NotFound', component: NotFoundPage },
]
export default routes