AUR0759
Error Message
Description
Cause
Solution
import { customAttribute } from 'aurelia'; @customAttribute('my-highlight') export class MyHighlightAttribute { // ... attribute logic ... }// In main.ts for global registration import { MyHighlightAttribute } from './my-highlight-attribute'; Aurelia.register(MyHighlightAttribute /* ... other registrations */) // ... // Or in a component for local registration import { MyHighlightAttribute } from './my-highlight-attribute'; import { customElement } from 'aurelia'; @customElement({ name: 'my-component', template: `<div my-highlight>...</div>`, dependencies: [MyHighlightAttribute] }) export class MyComponent { }
Debugging Tips
Last updated
Was this helpful?