AUR0154
Error Message
Description
Example Trigger
<!-- ❌ Malformed member access -->
<div textcontent.bind="user.[name]"></div>
<div textcontent.bind="user."></div>Solution
<!-- ✅ -->
<div textcontent.bind="user.name"></div>
<div textcontent.bind="user['name']"></div>Troubleshooting
Last updated
Was this helpful?