Ogone icon indicating copy to clipboard operation
Ogone copied to clipboard

inline-reaction issue: setReactivity isn't parsing/transforming correctly

Open SRNV opened this issue 4 years ago • 0 comments

this code

case 'update:xxx':
  const { i } = ctx;
  this.counts[i]= 0;

will be transformed to

___("counts[i]", this, this.counts[i] = 0);

the first argument should only contain the name of the property.

SRNV avatar Jan 31 '21 20:01 SRNV