[Vuejs]-Vue Component Reactive V-Model from parent update

0👍

computed: {
  yourDesiredVariable: {
     get() {
       return this.value
     },
     set(val) {
       this.$emit('input', val)
     }
  }
}

Try outputting the yourDesiredValue in DOM

Leave a comment