feat(FE): show components and helper

This commit is contained in:
Michael 2025-03-30 23:36:55 +02:00
parent 035bf88e5f
commit c20adaa865
4 changed files with 232 additions and 0 deletions

View file

@ -0,0 +1,26 @@
<script setup lang="ts">
import {WeekDaysData} from "@models/show/ShowRepetition.ts";
import {ref} from "vue";
const selectedDays = ref<number[]>([]);
</script>
<template>
<v-card>
<v-row dense no-gutters>
<v-col v-for="day in WeekDaysData" :key="day.type"
cols="12" sm="6" md="4">
<v-checkbox
v-model="selectedDays"
:label="day.dayName"
:value="day.type"
/>
</v-col>
</v-row>
</v-card>
</template>
<style scoped>
</style>