[Vuejs]-Ng-dirty like functionality in vue.js

0👍

You can try with a deep watcher:

watch:
{
  a:
  {
    handler(newValue, oldValue)
    {
      // find out what was actually changed
    },
    deep: true
  },
  e:
  {
    handler(newValue, oldValue)
    {
      // find out what was actually changed
    },
    deep: true
  },
}

Leave a comment