UNPKG

aurelia-form

Version:

Makes working with forms just a tad more pleasant.

17 lines (11 loc) 392 B
import {bindable, customElement, bindingMode} from 'aurelia-framework'; import {resolvedView} from 'aurelia-view-manager'; @resolvedView('spoonx/form', 'form-association') @customElement('form-association') export class FormAssociation { @bindable({defaultBindingMode: bindingMode.twoWay}) value; @bindable name; @bindable options; @bindable disabled; @bindable placeholder; }