You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi and thanks for such great products @Rich-Harris,
there is a small issue depending on how the computed properties are ordered:
// this is well transpiledconstref={'foo': bar,[`foo-${bar}`]: fooBar}// becomesvarref={'foo': bar};ref[("foo-"+bar)]=fooBar
// this is is notconstref={[`foo-${bar}`]: fooBar,'foo': bar}// becomesvarref={};ref[("foo-"+bar)]=fooBar;ref.'foo'=bar// where this is unvalid JS syntax
As temporal workaround is to keep the computed properties always last, but it would be nice if this could be solved. I don't have much experience with this project, sorry for not having any PR instead.
The text was updated successfully, but these errors were encountered:
Hi and thanks for such great products @Rich-Harris,
there is a small issue depending on how the computed properties are ordered:
As temporal workaround is to keep the computed properties always last, but it would be nice if this could be solved. I don't have much experience with this project, sorry for not having any PR instead.
The text was updated successfully, but these errors were encountered: