feat (medicine): implement medicine entry form and list

This commit is contained in:
Abizrh
2025-09-07 20:09:31 +07:00
parent e9cbb09bc5
commit 302bcb3e2a
5 changed files with 71 additions and 169 deletions
+10
View File
@@ -46,6 +46,16 @@ const navMenu = ref({
icon: 'i-lucide-user',
component: defineAsyncComponent(() => import('~/pages/_dev/user/list.vue')),
},
{
title: 'Test Medicine List',
icon: 'i-lucide-user',
component: defineAsyncComponent(() => import('~/components/flow/medicine/list.vue')),
},
{
title: 'Test Medicine Add',
icon: 'i-lucide-user',
component: defineAsyncComponent(() => import('~/components/flow/medicine/entry.vue')),
},
],
})