Computed функции переписать на стандарт vue3 ? (get, set)
Помогите переписать computed get, set на vue3
radioButtonValue: {
get: function() {
return this.value
},
set: function() {
// Communicate the change to parent component so that selectedValue can be updated
this.$emit("change", this.label)
}
}
https://jsfiddle.net/3uvrg681/