fix: quotation => worker item count

This commit is contained in:
puriphatt 2024-12-18 17:50:19 +07:00
parent bbe4150581
commit 1d4b101931

View file

@ -7,8 +7,6 @@ defineEmits<{
(e: 'check', index: number): void;
}>();
const employeeAmount = defineModel<number>('employeeAmount', { default: 1 });
withDefaults(
defineProps<{
readonly?: boolean;
@ -166,6 +164,7 @@ const columns = [
</span>
<q-input
disable
for="worker-count"
dense
outlined
@ -175,7 +174,7 @@ const columns = [
input-class="text-center"
:readonly
hide-bottom-space
v-model="employeeAmount"
:model-value="rows.length"
/>
</div>
</div>