diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-12-04 00:21:19 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-12-04 00:21:19 +0530 |
commit | 43ecf895d367bb63b35a2452b1e1c81e76e560cb (patch) | |
tree | 20034bb71eb19eff04a22190a6e06a04b1ed7a0b /src/router | |
parent | 366e2193c855ab28917b743c71a877ad5b76c934 (diff) |
added sidebar0.2.0
Diffstat (limited to 'src/router')
-rw-r--r-- | src/router/index.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/router/index.ts b/src/router/index.ts index 55e2070..9817a1e 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -46,7 +46,7 @@ const router = createRouter({ }, { path: '/customer/new', - name: 'new customer', + name: 'new-customer', component: NewCustomer, meta: { isAuth: true } }, @@ -58,13 +58,13 @@ const router = createRouter({ }, { path: '/item/new', - name: 'new item', + name: 'new-item', component: NewItem, meta: { isAuth: true } }, { path: '/invoice/new', - name: 'new invoice', + name: 'new-invoice', component: NewInvoice, meta: { isAuth: true } }, |