Bindable properties
Defining Bindable Properties
Basic Example
import { bindable } from 'aurelia-framework';
export class MyCustomElement {
@bindable myProperty;
// Additional component logic...
}<my-custom-element my-property.bind="parentValue"></my-custom-element>Binding Modes
Specifying Binding Modes
Examples
Binding Mode Configuration
Last updated
Was this helpful?