AUR0801
Error Message
Description
Cause
Solution
Example
<!-- Incorrect: Applying & self to .bind -->
<input value.bind="message & self">
<!-- Incorrect: Applying & self to interpolation -->
<p>Value: ${count & self}</p>
<!-- Correct: Applying & self to .trigger -->
<div click.trigger="handleClick() & self">
<button>Click Me</button> <!-- handleClick will NOT run if this button is clicked -->
Clicking here directly will run handleClick.
</div>
<!-- Correct: Applying & self to .capture -->
<div focus.capture="handleFocus() & self">
<input> <!-- handleFocus will NOT run if this input receives focus -->
</div>Debugging Tips
Last updated
Was this helpful?