26 lines
No EOL
492 B
Vue
26 lines
No EOL
492 B
Vue
<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> |