vue-snippets icon indicating copy to clipboard operation
vue-snippets copied to clipboard

Vue3 computed template is wrong

Open wmlgl opened this issue 2 years ago • 0 comments

Now is: ``computed(() => { get: () => {}, set: () => {}})`

Correct:

  1. computed(() => {})
  2. computed({ get: () => {}, set: () => {}})

wmlgl avatar Apr 11 '23 03:04 wmlgl