AUR0714
This error code has been removed in Aurelia 2.
Status: Removed
Previous Error Message
Migration
import { bindable, customAttribute } from 'aurelia';
@customAttribute('my-attr')
export class MyAttribute {
@bindable({ primary: true }) value: string;
@bindable other: string;
}import { bindable, customAttribute } from 'aurelia';
@customAttribute({ name: 'my-attr', defaultProperty: 'value' })
export class MyAttribute {
@bindable value: string;
@bindable other: string;
}Last updated
Was this helpful?