AUR0175
Error Message
Description
Example Trigger
<!-- ❌ Destructuring params -->
<div textcontent.bind="({ a }) => a"></div>Solution
Last updated
Was this helpful?
AUR0175: Expression error: arrow function with destructuring parameters is not supported: "{{expression}}"
Aurelia binding expressions do not support destructuring in arrow function parameters.
<!-- ❌ Destructuring params -->
<div textcontent.bind="({ a }) => a"></div>Avoid destructuring parameters; move the logic into a view-model method.
Last updated
Was this helpful?
Was this helpful?