Files
lightController/src/components/dbm/UpdateValue.vue
2025-06-27 11:02:27 +02:00

14 lines
212 B
Vue

<template>
<QCard v-if="props.display"> Test </QCard>
</template>
<script setup lang="ts">
const props = defineProps({
display: {
type: Boolean,
default: true,
required: true,
},
});
</script>