2.6.8
https://codepen.io/bassta/pen/vPrYdY
Component data, bind to v-model to change
Nothing, doesn't throw error
Showing data works, binding v-model to data does not.
you are not supposed to modify the data you pass to a slot, pretty much like a prop.
You should pass a method instead to change tha value. You can always pass an object and modify a property (like a prop) but it's also not recommended
Most helpful comment
you are not supposed to modify the data you pass to a slot, pretty much like a prop.
You should pass a method instead to change tha value. You can always pass an object and modify a property (like a prop) but it's also not recommended