feat: customer employee form (basic info & checkup)

This commit is contained in:
puriphatt 2024-06-07 12:24:09 +00:00
parent 768686d41c
commit a6a0c5d1e1
7 changed files with 728 additions and 136 deletions

View file

@ -8,6 +8,7 @@ defineProps<{
label: string;
count: number;
}[];
clickable?: boolean;
}>();
</script>
<template>
@ -18,7 +19,7 @@ defineProps<{
:key="v.label"
class="rounded"
:class="v.count === 0 ? 'disable-item' : ''"
:clickable="v.count > 0"
:clickable="v.count > 0 || clickable"
:active="selector === v.label"
:active-class="
selector === v.label