12 questions
0
votes
1
answer
50
views
vue-datepicker time picker not respecting max date (time) if utc prop is set to preserve option
Framework: Vue 3 Composotion API
@vuepic/vue-datepicker version: 11.0.2
Description
When setting max date to current date new Date() and setting prevent-min-max-navigation prop the time picker does ...
2
votes
0
answers
58
views
Arrow Key Navigation Not Working on First Calendar in Multi-Calendar Mode in vue3datepicker
When using vue-datepicker with multi-calendars and arrow-navigation props enabled, the keyboard arrow navigation is not functioning properly. Specifically, arrow key navigation works correctly on the ...
0
votes
0
answers
37
views
I am using vuepic/vue-date-picker- month-picker. disabled-dates styles are not applying? how to achieve that?
I am using vuepic/vue-date-picker
month-picker (picked), I try to disable the months other than the current and previous month but I am unable to do that. Styles are not applied. what is the mistack ...
0
votes
1
answer
877
views
Vue3 datepicker: How to display the default calendar given for a specific month and year?
I am using @vuepic/vue3datepicker which automatically displays the current month's days when I use it:
<template>
<VueDatePicker v-model="date" inline></VueDatePicker>
&...
1
vote
1
answer
829
views
Vue3 datepicker: scoped styles not working
I am using Vuepic/ Vue3Datepicker and I want to customize the way a selected date looks like. As per the documentation, we can do that this way for the light mode:
<style>
.dp__theme_light {
--...
1
vote
1
answer
123
views
Vue DatePicker preserveState using inertiaJS
Using import VueDatePicker from '@vuepic/vue-datepicker';
combined with inertiaJS useForm(), but VueDatePicker v-model data value was not preserved.
I have this on my Vue page.
on my <script setup&...