UNPKG

aurelia-templating

Version:

An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.

10 lines (7 loc) 202 B
import {bindable} from '../../src/decorators'; export class SimpleElement { @bindable foo = 'foo'; @bindable bar = 'bar'; fooChanged(newValue, oldValue){ } barChanged(newValue, oldValue){ } }