report-health-index.ts 445 B

123456789101112131415161718
  1. // module/health/components/report-health-index/report-health-index.ts
  2. import I18nBehavior from "../../../../i18n/behavior";
  3. Component({
  4. behaviors: [I18nBehavior],
  5. options: {
  6. multipleSlots: true,
  7. },
  8. properties: {
  9. dataset: { type: Array, value: [] },
  10. loading: { type: Boolean, value: false },
  11. message: { type: String, value: '' },
  12. },
  13. data: {
  14. i18n: {
  15. healthIndex: { title: '', __show__: false },
  16. },
  17. }
  18. })