AUR0164
Error Message
Description
Example Trigger
<!-- ❌ Unsupported object literal syntax -->
<div textcontent.bind="({ get x() { return 1; } })"></div>Solution
<!-- ✅ Simple object literal -->
<div textcontent.bind="{ x: 1, y: 2 }"></div>Troubleshooting
Last updated
Was this helpful?