AUR0714
Last updated
Was this helpful?
Was this helpful?
import { bindable, customAttribute } from 'aurelia';
@customAttribute({ name: 'my-attr', defaultProperty: 'value' })
export class MyAttribute {
@bindable value: string;
@bindable other: string;
}