Изменила нейминг переменных

This commit is contained in:
Daria Golova
2022-10-25 16:49:48 +03:00
parent ba9f8a36bf
commit 86b0cb66bc
3 changed files with 21 additions and 21 deletions

View File

@@ -1,7 +1,7 @@
<template lang="pug">
.calendar-clock-column.flex.flex-col.items-end.gap-y-43.pt-9.pb-45px.px-3
span.text-base(
v-for="hour in hoursArray"
v-for="hour in timeCoil"
:key="hour"
:class="currentHourStyle(hour)"
) {{ hour }}
@@ -11,7 +11,7 @@
export default {
name: "CalendarClockColumn",
props: {
hoursArray: Array,
timeCoil: Array,
currentTime: String,
currentDate: Object,
dayEndTime: Number,