-
-
Notifications
You must be signed in to change notification settings - Fork 405
New issue
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
Vue3 compatibility #527
Comments
annoying error |
For vue3 npm i vue-datepicker-next
|
Is there any separate documentation for this? |
Are there any plans to release a Vue 3 compatible version? Despite being relatively hard to find it appears to slowly gain traction: |
@gsedlacz The component version for vue3 is a completely different project. |
Hello, Vue3 project is now released ? |
It's really great that there is a vue3 compatible version for this library :) |
@MskHelen17 Yes, I'll add it and I plan that all feature can be completed by the end of this month. |
Sorry to bother you again. Do you know when will be released the vue3 version ? |
|
I released a new package vue-datepicker-next for vue3.0. Breaking Change: // `vue-datepicker-next` for vue3
<template>
<date-picker v-model:value="date"></date-picker>
</template>
<script>
import DatePicker from 'vue-datepicker-next'
export default {
components: { DatePicker }
}
</script> // `vue2-datepicker` for vue2
<template>
<date-picker v-model="date"></date-picker>
</template>
<script>
import DatePicker from 'vue2-datepicker'
export default {
components: { DatePicker }
}
</script> |
I wanted to upgrade to this new package you released, but I noticed that there is no |
@matko9 For <calendar-component v-model:value="value"></calendar-component> import DatePicker from 'vue-datepicker-next'
const CalendarComponent = DatePicker.Calendar
export default {
component: { CalendarComponent }
} |
Ok, didn't know about that, thanks. |
Yes, For const DateTime = DatePicker.DateTime |
Ok, I will update the code so that it works like that, but I think that it was better to use with the |
Where can we see documentation for the new CalendarComponent? I need to see if it still supports ranges and how it exposes the date range value or if anything else has changed. Also need to see if you can still import the scss in the |
I can't use Should be easy to have |
Oh I see that exists a |
What problem does this feature solve?
Being able to use this lib in vue3. :) Getting this when I import it.
What does the proposed API look like?
Same as before. :)
The text was updated successfully, but these errors were encountered: