fix: custom emp count
This commit is contained in:
parent
c39bc9a4d2
commit
1c136f93c2
1 changed files with 3 additions and 1 deletions
|
|
@ -2,6 +2,8 @@
|
|||
import { QTableProps } from 'quasar';
|
||||
import TableComponents from 'src/components/TableComponents.vue';
|
||||
|
||||
const employeeAmount = defineModel<number>('employeeAmount', { default: 1 });
|
||||
|
||||
defineEmits<{
|
||||
(e: 'delete', index: number): void;
|
||||
(e: 'check', index: number): void;
|
||||
|
|
@ -173,7 +175,7 @@ const columns = [
|
|||
input-class="text-center"
|
||||
:readonly
|
||||
hide-bottom-space
|
||||
:model-value="rows.length"
|
||||
v-model="employeeAmount"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue