[Vuejs]-I got loader error when I was trying to write a set/get function

0๐Ÿ‘

โœ…

I found it, it should be object instead of function for form

eg.

computed: {
  form: {
    set: function() {},
    get: function() {}
  }
}

Leave a comment