Page MenuHomec4science

patient-count.js
No OneTemporary

File Metadata

Created
Wed, May 22, 09:55

patient-count.js

import {bindable, customElement} from 'aurelia-framework';
@customElement('patient-count')
export class PatientCount{
@bindable result;
@bindable showBreakdown;
attached() {
console.log(this.result);
}
}

Event Timeline