Files
newfreeplanet_OLD/src/components/CMyToggleList/CMyToggleList.vue
Paolo Arena 7006d62cae Notifiche all'Utente
Pannello Utente (backoffice)
2022-07-16 14:20:22 +02:00

22 lines
494 B
Vue
Executable File

<template>
<div>
<div class="cltoggle" v-for="(rec, index) in myarrvalues" :key="index">
<q-toggle
v-if="rec.label"
v-model="rec.valbool"
:label="rec.label ? rec.label : ''"
:color="tools.getColorByIndexBest(index)"
keep-color
@update:model-value="changeval">
</q-toggle>
</div>
</div>
</template>
<script lang="ts" src="./CMyToggleList.ts">
</script>
<style lang="scss" scoped>
@import './CMyToggleList.scss';
</style>