I’m trying to emit a prop that I modify. I can do that directly with the prop and it works but I get a Vue Warn: Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders
So I tried to put the prop in a computed, but the emit executes before the computed is executed.
JavaScript
x
18
18
1
template:
2
<input
3
v-on:keyup="validatedate(localDate)"
4
v-on:change="emitAnswer(localDate)"
5
v-model="localDate">
6
,
7
computed: {
8
dateLocal: {
9
get: function () {
10
return this.date
11
}
12
}
13
methods: {
14
emitAnswer: function (date) {
15
this.$emit('myFunc', date);
16
}
17
}
18
Advertisement
Answer
Since Vue can’t guarantee that v-model will be executed before the v-on:change, you can use watchers to only call the emit once the value of the property has been changed in the component, example:
JavaScript
1
6
1
watch {
2
date() {
3
this.$emit('myFunc', this.date)
4
}
5
}
6