AUR0764
Error Message
Description
Example Trigger
import { CustomElement } from '@aurelia/runtime-html';
// ❌ Node created/added outside Aurelia control
const external = document.createElement('div');
document.body.appendChild(external);
CustomElement.findController(external); // throws AUR0764Correct Usage
Troubleshooting
Related Errors
Last updated
Was this helpful?