0
0
Fork 0

Add checkbox

This commit is contained in:
William Buezas 2024-06-19 20:43:21 -03:00
parent 4e7c09fa44
commit 79c606fc70
1 changed files with 4 additions and 2 deletions

View File

@ -315,7 +315,7 @@ onMounted(async () => {
:no-data-label="t('globals.noResults')" :no-data-label="t('globals.noResults')"
style="max-width: 99%" style="max-width: 99%"
> >
<template #header> <template #header="props">
<QTr> <QTr>
<QTh class="horizontal-separator" /> <QTh class="horizontal-separator" />
<QTh class="horizontal-separator" colspan="8" translate> <QTh class="horizontal-separator" colspan="8" translate>
@ -326,7 +326,9 @@ onMounted(async () => {
</QTh> </QTh>
</QTr> </QTr>
<QTr> <QTr>
<QTh /> <QTh>
<QCheckbox v-model="props.selected" />
</QTh>
<QTh <QTh
v-for="(col, index) in ticketColumns" v-for="(col, index) in ticketColumns"
:key="index" :key="index"