-
-
Notifications
You must be signed in to change notification settings - Fork 35
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
[Bug] Throws error related to TableDate when combined with @vue/compat #41
Comments
Hi, i have the same issue, do you find any solution ? |
@fanta759 No, sorry. |
I was managed to fix this specific issue disabling import { configureCompat } from 'vue'
// disable compat for certain features
configureCompat({
COMPONENT_ASYNC: false,
}) however, after that I get the following error when selecting date:
|
@Leftyx I use another datetimepicker |
also stumbled upon this issue, didn't find the solution |
any update? i have same issue. |
@Leftyx @yujin1st @kazuyoshi-yamada-wmj |
having a similar error props[""onUpdate:value] is not a function |
Vue-datepicker-next version: 1.0.3
Vue version: 3.2.47
Browser: All
Steps to reproduce
Create a new vue-project (
npm create vue@3
). I did not select any specials, such as typescript, pinia, linting, testing... Just the bare minimal.Add
vue-datepicker-next
.Created a new route for the picker. And pasted the example:
Everything works just fine and the picker works.
Adding
@vue/compat
as dependency and adding the changes for it in vite.config.js:Then the pickers stop working.
When i'm debugging
TableDate
, the arguments passed in are two functions, not aTableDateProps
object. They are coming fromconvertLegacyAsyncComponent
:The text was updated successfully, but these errors were encountered: