feat(FE): show components and helper
This commit is contained in:
parent
035bf88e5f
commit
c20adaa865
4 changed files with 232 additions and 0 deletions
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue