Closed valichek closed 9 years ago
view-models (MyPage) should not have properties decorated with @bindable
. The bindable decorator is intended to be used in custom elements.
My bad with copy-pasting, it looks like that
export class MyPage {
listData = null;
someFunc() {
this.listData = 'binded'
}
}
but the problem is with binding to AuTable.listData
It should be list-data
because HTML does not understand casing. All properties are lowercased and hyphenated.