-
Notifications
You must be signed in to change notification settings - Fork 9
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
Is this compatible with the new composition API? #18
Comments
I haven't tried with the composition API, but I can take a look at it this weekend and then get back to you. |
I'm working on a new version for Vue 3, so this is coming soon. |
i'm waiting new version for Vue 3. |
It's already in this branch |
it's still not out? what a waste. |
@WisdomSky I haven't got the time to work on it. Feel free to use that branch though. |
Hello ! does this work with vue3 ? Thanks ! |
This version |
ok I tried to use in my code but then I have this error in my window 👍 I ran |
@cams03, did you solve the error? I am doing the exactly same thing of you. The company decided to update Vue version to 3 and it is a breaking change. When rendering the basic array of strings or numbers: <v-multiselect-listbox :options="['Alabama', 'California']"></v-multiselect-listbox> When I try to render an array of objects: <v-multiselect-listbox :options="[{label: 'Alabama', code: 'al'}, {label: 'California', code: 'cal'}]"
:reduce-display-property="(option) => option.label"
:reduce-value-property="(option) => option.code">
</v-multiselect-listbox> |
@arnonrdp I fixed the error yes, but I'm sorry it was a long time ago and I don't remember how... I also removed the plugin in the end and made it from scratch so I can't even tell you what was my solution, sorry ! |
Don't feel bad @cams03. Yesterday I decide to do the same from scratch. I'll leave it here in case anyone needs it in the future: https://codepen.io/arnonrdp/pen/yLQMdgv |
Is this compatible with the new composition API?
The text was updated successfully, but these errors were encountered: