[Vuejs]-Vue 3 + Typescript : Watch model property

0👍

Your class instance was made Reactive somewhere, making it unref deferred_invoicing property

Use

    watch(toRaw(this).deferred_invoicing, (newValue, oldValue) => {
      console.log(newValue)
    }

Leave a comment