We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hello I have a small problem ... I cannot slot vcalendar with nuxtjs
I use vue 3.4.27 and v-calendar 3.1.2
3.4.27
3.1.2
this is my code and I don't understand really how to use BaseInput .... ( how can I import it .... thanks for all !
<div class="w-full"> <Label class="grid w-full max-w-sm items-center gap-1.5 my-2"><slot name="title"></slot></Label> <VDatePicker v-model="range" is-range> <template #default="{ inputValue, inputEvents }"> <div class="flex items-center w-full justify-between"> <Input :value="range.start" v-on="inputEvents.start" class="mr-2" /> <ChevronRight class="w-20" /> <Input class="ml-2" v-model="inputValue.end" v-on="inputEvents.end" /> </div> </template> </VDatePicker> </div> </div>
my IDE ( webstom tell me : that i donest recognize default template ....
The text was updated successfully, but these errors were encountered:
Hi TimotheDavid,
I have struggle with the BaseInput as well and finally the code below works for me
BaseInput
<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.
Sorry, something went wrong.
No branches or pull requests
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 ....
The text was updated successfully, but these errors were encountered: