[Vuejs]-How to detect change of actual value not just OnChange nuxt vuetify

1👍

You should be able to recognize any changes made to this.camera by using a watcher

watch: {
  camera: {
    handler (newValue, oldValue) {
      // do something here because your this.camera changed
    },
    deep: true
  }
}

Leave a comment