Fix Registration

This commit is contained in:
Surya Paolo
2022-12-17 14:12:04 +01:00
parent 2b44dfbcb6
commit 3c2fc4c806
33 changed files with 512 additions and 376 deletions

View File

@@ -24,6 +24,11 @@ export default defineComponent({
type: Boolean,
required: true,
},
showBarSelection: {
type: Boolean,
required: false,
default: true,
},
mygrp: {
type: Object as PropType<IMyGroup | null>,
required: false,

View File

@@ -20,24 +20,23 @@
<slot></slot>
</div>
<div v-else>
<q-list>
<span v-for="(grp, index) in listgroupsfiltered" :key="index" class="q-my-sm" clickable>
<CMyGroup
:mygrp="grp"
:visu="modelValue">
</CMyGroup>
</span>
</q-list>
<q-list>
<span
v-for="(grp, index) in listgroupsfiltered"
:key="index"
class="q-my-sm"
clickable
>
<CMyGroup :mygrp="grp" :visu="modelValue"> </CMyGroup>
</span>
</q-list>
</div>
</div>
<div v-else>
<q-list class="width-container">
<span class="q-my-sm" clickable>
<CMyGroup
:mygrp="mygrp"
:visu="visu">
</CMyGroup>
</span>
<span class="q-my-sm" clickable>
<CMyGroup :mygrp="mygrp" :visu="visu"> </CMyGroup>
</span>
</q-list>
</div>
</div>