report-health-index.ts 278 B

1234567891011
  1. // module/health/components/report-health-index/report-health-index.ts
  2. Component({
  3. options: {
  4. multipleSlots: true,
  5. },
  6. properties: {
  7. dataset: { type: Array, value: [] },
  8. loading: { type: Boolean, value: false },
  9. message: { type: String, value: '' },
  10. },
  11. })