0👍
✅
computed: {
yourDesiredVariable: {
get() {
return this.value
},
set(val) {
this.$emit('input', val)
}
}
}
Try outputting the yourDesiredValue in DOM
Source:stackexchange.com