fix: quotation => worker item count
This commit is contained in:
parent
bbe4150581
commit
1d4b101931
1 changed files with 2 additions and 3 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue