AUR0101
Error Message
Description
Cause
Solution
import { Aurelia, StandardConfiguration } from 'aurelia'; import { MyBindingBehavior } from './my-binding-behavior'; // Example Aurelia .register(StandardConfiguration) .register(MyBindingBehavior) // Register here .app(MyApp) .start();import { customElement } from 'aurelia'; import { MyBindingBehavior } from './my-binding-behavior'; // Example @customElement({ name: 'my-component', template: `<input value.bind="value & myBindingBehavior">`, dependencies: [MyBindingBehavior] // Register here }) export class MyComponent { value = ''; }
Example
Debugging Tips
Last updated
Was this helpful?