AUR0821
Error Message
Description
Example Trigger
<!-- ❌ Unsupported command with contextual -->
<div repeat.for="item of items; contextual: true; key.trigger: item.id">
${item.name}
</div>Correct Usage
<!-- ✅ bind is supported -->
<div repeat.for="item of items; contextual: true; key.bind: item.id">
${item.name}
</div>Troubleshooting
Last updated
Was this helpful?