defineModel is now stable in Vue 3.4: blog.vuejs.org/posts/vue-3-4#definemodel-is-now-stable
@whatsupbudbud8 ай бұрын
Loved your structural approach from least to most abstract.
@ניבאלישע Жыл бұрын
So glad I found this video. I just started working with Vue after React and this topic was very confusing for me. Especially since the same thing can be done in different ways. Thanks!
@maxralph01 Жыл бұрын
Wow ! Been a while, Andre ! Single-handedly, your e-commerce video series made me an intermediate Laravel developer. Returning to say "Thank you" !
@N1mdae Жыл бұрын
This video was very helpful, thanks
@claytonnighthawk78376 ай бұрын
Thank you, this was a really helpful explanation!
@ivan44866 ай бұрын
This is so helpful! Thank you so much!
@acerhigh094 ай бұрын
defineEmits not needed when using defineModel, are still there in the defineModel example, but perhaps that implicitly meant
@oketafred Жыл бұрын
Awesome content Andre
@ulugbekatakhanov1431 Жыл бұрын
the best explanation. Great.
@isabelphillips4514 ай бұрын
Thank you for this 🤗
@devmenezes Жыл бұрын
Nice content, Andre.
@aissa.bouguern Жыл бұрын
Great and informative video as usual!
@johnnydriesen7575 Жыл бұрын
Excellent Vid. Very well explained. Thanks for willing to share your knowledge, and taking your time to create this vid. Question to you.. R U a fan of TS ? And if I can ask ... Why (not) ?
@drehimself Жыл бұрын
I've only used TypeScript at a very basic level, I haven't really used it for any major projects. I understand the benefits, and I think you'll only see them if you really decide to go all in. Vue 3.3 has made some considerable improvements to using TS within Vue, so maybe we'll see more Vue devs using it. Check out this talk by Tanner Linsley (author of popular React libraries) who outlines his journey from non-TS person, to all-in with TS: kzbin.info/www/bejne/hWWsiH2ZlsuLbsU. I think this is how most TS users feel.
@johnnydriesen7575 Жыл бұрын
@@drehimself Thank you for your reply ! Highly appreciated.
@keno571 Жыл бұрын
Thanks for the great video! Looking forward to more :)
@TheTatsin2 ай бұрын
Thank you !
@codedjango Жыл бұрын
Thanks....followed your tutorial n works very well, however, in Vue DevTools, in the child component, it shows: event-listeners: update:model-value: not-declared Is it that Vue devtools is not ready for this "defineModel" macro? Please suggest
@munandisichali605 Жыл бұрын
Any full courses that will come from you?
@drehimself Жыл бұрын
Possibly in the future, for now, just trying to get some steady content going here on YT.
@mikeywork6348 Жыл бұрын
Does this work if the modelValue is an object that contains arrays?
@EduardoDonato82 Жыл бұрын
Hi, what vscode theme are you using?
@Skia_ Жыл бұрын
If you try to console log the name ref in the app component, the value will not update in the console when the input value changes. Can someone explain to me why? I am a React developer How can i make the name ref update in the script tag? Thanks in advance
@whatsupbudbud8 ай бұрын
Question is where in the App component lifecycle you're console.logging it. If you did it just in the script tag, that would be similar to doing once on mounted.