Vue 3, setting value when prop changes, am I doing this right?
I want to set an input to a value when a prop changes, but I don't want to v-model it because I don't want the top level value to change (it could lead to invalid values being set)
Yes you can use a watcher for this but what is the exact use case of this component?
User has the option to select multiple dates in the parent component with a different shift start time and then the user can update this time via the input field?