Ogone
Ogone copied to clipboard
inline-reaction issue: setReactivity isn't parsing/transforming correctly
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.