AUR0763
Error Message
Description
Example Trigger
import { CustomElement } from '@aurelia/runtime-html';
// ❌ Passing an element that is not a custom element host
const span = document.querySelector('span')!;
CustomElement.for(span); // throws AUR0763Correct Usage
Related Errors
Last updated
Was this helpful?