feat: add manual route
This commit is contained in:
parent
6c669a6975
commit
a313d5e965
3 changed files with 20 additions and 1 deletions
5
src/pages/00_manual/MainPage.vue
Normal file
5
src/pages/00_manual/MainPage.vue
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<script setup lang="ts"></script>
|
||||
|
||||
<template>
|
||||
<div></div>
|
||||
</template>
|
||||
5
src/pages/00_manual/ViewPage.vue
Normal file
5
src/pages/00_manual/ViewPage.vue
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<script setup lang="ts"></script>
|
||||
|
||||
<template>
|
||||
<div></div>
|
||||
</template>
|
||||
|
|
@ -145,6 +145,16 @@ const routes: RouteRecordRaw[] = [
|
|||
name: 'Notification',
|
||||
component: () => import('pages/00_notification/MainPage.vue'),
|
||||
},
|
||||
{
|
||||
path: '/manual/:category',
|
||||
name: 'Manual',
|
||||
component: () => import('pages/00_manual/MainPage.vue'),
|
||||
},
|
||||
{
|
||||
path: '/manual/:category/:page',
|
||||
name: 'ManualView',
|
||||
component: () => import('pages/00_manual/ViewPage.vue'),
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
|
|
@ -223,7 +233,6 @@ const routes: RouteRecordRaw[] = [
|
|||
name: 'DebitNoteDocumentView',
|
||||
component: () => import('pages/12_debit-note/document-view/MainPage.vue'),
|
||||
},
|
||||
|
||||
// Always leave this as last one,
|
||||
// but you can also remove it
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue