AUR0106
Error Message
Description
Cause
Solution
Example
<!-- my-component.html -->
<template>
<!-- Incorrect: Attempting to assign to $host -->
<button click.trigger="$host.title = 'New Title'">Set Host Title</button>
<!-- Incorrect: Attempting to assign to a property of $host -->
<input input.trigger="$host.dataset.value = $event.target.value">
<!-- Correct: Reading from $host (Example) -->
<p>Host width: ${$host.offsetWidth}</p>
<!-- Correct: Calling a method on the host's view model (Example) -->
<button click.trigger="updateHostTitle('New Title')">Set Host Title via VM</button>
</template>Debugging Tips
Last updated
Was this helpful?