Motivation
When I was using Vue2 along with vue-class-component and vue-property-decorator it was easy to synchronize v-models between c...
For further actions, you may consider blocking this person and/or reporting abuse
In the 'get' of computed, is the reactivity deeply? I used this way back in vue2, turn out I had to use
watch
with deep option to make it work.It depends. If you define new properties - you probably want to use
Vue.set
or$vm.set
. Vue 2 works using patching mechanism that modify object fields to use getters and setters, and it's done during initialization. Any other field won't be reactive if you don't set it with options written above.So it all depends on if you're creating completely new objects or adjust some properties you probably want to use
Vue.set
orObject.assign({}, oldObject, ...)
etc.You could find more descriptive information with examples in the official documentation.
That's make sense, thanks
You saved my day, I was struggling a lot with this XD Everytime I emitted the updated event I was getting an undefined object error, the default option saved me =D
In my case I am only using the emit event inside a watch (cuz I have a custom condition to update other property of the model). Vue seems to already send the emit event by default so no need to do it manually everytime.
Actually that setter inside computed
theModel
will never run, which you can easily prove by commenting out thatemit
statement inside of it, becausetheModel.foo
on input will be changed by mutating that model and not re-assigning over itHey, so if the setter function never runs then how come the value in the parent component gets updated? And if I want to call a function in the setter how do I do that?
Thank you so much buddy!
I'm happy to be helpful!
What if I need to validate the value first or make adjustments before emit()ing?
You could extend the setter.
For example:
The setter function does not run as the theModel key is bind to the input field not the theModel.
After couple of hours, I found your solution and it works flawlessly! Thank you!
I'm glad that the article was helpful!