[Vuejs]-Vue JS v-model data doesn't update when used with watch

0👍

You should add deep:true option because It looks like widget_data is an object with nested values:

watch: {
  widget_data:{
      handler(val) {
         this.crop_mode = val.crop_mode
      },
     deep:true
    }
},

Leave a comment