You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
import { createRouter, createWebHistory } from 'vue-router' |
|
|
|
import Layout from '@/layout/Index.vue' |
|
import Home from '@/views/Home.vue' |
|
import Write from '@/views/Write.vue' |
|
import MailEvaluate from '@/views/MailEvaluate.vue' |
|
import MailDetail from '@/views/MailDetail.vue' |
|
import NotFound from '@/views/error/404.vue' |
|
|
|
const routes = [ |
|
{ |
|
path: '/layout', |
|
component: Layout, |
|
children: [ |
|
{ |
|
path: '/', |
|
component: Home, |
|
}, |
|
{ |
|
path: '/mail/write', |
|
component: Write, |
|
}, |
|
{ |
|
path: '/mail/evaluate', |
|
component: MailEvaluate |
|
}, |
|
{ |
|
path: '/mail/:id', |
|
component: MailDetail |
|
}, |
|
] |
|
}, |
|
{ |
|
path: '/:catchAll(.*)', |
|
name: 'not-found', |
|
component: NotFound, |
|
meta: { |
|
title: '404' |
|
} |
|
} |
|
]; |
|
|
|
const router = createRouter({ |
|
history: createWebHistory(), |
|
routes |
|
}); |
|
|
|
export default router;
|
|
|