WIP Стили для выделенных дат

This commit is contained in:
Daria Golova
2023-05-30 18:11:49 +03:00
parent 63020d67da
commit 20893fdc61
2 changed files with 121 additions and 31 deletions

View File

@@ -51,7 +51,7 @@
anchor="bottom middle",
self="top middle"
)
base-calendar(v-model="date")
base-calendar(v-model="date", range, :range-count="5")
q-btn(
color="secondary",
icon="arrow_forward_ios",
@@ -90,7 +90,10 @@ export default {
value: "expanded",
},
],
date: moment().clone().add(1, "month").add(15, "day"),
date: {
from: moment().clone().add(1, "month"),
to: moment().clone().add(2, "month"),
},
calendarVisibility: false,
};
},