aboutsummaryrefslogtreecommitdiff
path: root/src/router
diff options
context:
space:
mode:
Diffstat (limited to 'src/router')
-rw-r--r--src/router/index.ts6
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 }
},