AUR0163
Last updated
Was this helpful?
AUR0163: Expression error: invalid BindingIdentifier at left hand side of "of": "{{expression}}" | kind: {{kind}}
This error occurs when the left-hand side of an of-based construct (such as repeat.for) is not a supported binding identifier.
<!-- ❌ Invalid LHS -->
<div repeat.for="a + b of items">${a}</div>Use a simple identifier (or supported destructuring, if applicable) on the left-hand side.
<!-- ✅ -->
<div repeat.for="item of items">${item}</div>Ensure the syntax is repeat.for="item of items" (not an arbitrary expression on the left).
Last updated
Was this helpful?
Was this helpful?