Open TimotheDavid opened 3 months ago
Hi TimotheDavid,
I have struggle with the BaseInput
as well and finally the code below works for me
<VDatePicker v-model="range" locale="zh-TW" is-range>
<template #default="{ inputValue, inputEvents }">
<input :value="inputValue.start" placeholder="YYYY/MM/DD" class="ui mini input" v-on="inputEvents.start">
<span><img src="/tilde.png" alt="tilde" /></span>
<input :value="inputValue.end" placeholder="YYYY/MM/DD" class="ui mini input" v-on="inputEvents.end">
</template>
</VDatePicker>
I hope it helps.
hello I have a small problem ... I cannot slot vcalendar with nuxtjs
I use vue
3.4.27
and v-calendar3.1.2
this is my code and I don't understand really how to use BaseInput .... ( how can I import it .... thanks for all !
my IDE ( webstom tell me : that i donest recognize default template ....