| 123456789101112131415161718 |
- // module/health/components/report-health-index/report-health-index.ts
- import I18nBehavior from "../../../../i18n/behavior";
- Component({
- behaviors: [I18nBehavior],
- options: {
- multipleSlots: true,
- },
- properties: {
- dataset: { type: Array, value: [] },
- loading: { type: Boolean, value: false },
- message: { type: String, value: '' },
- },
- data: {
- i18n: {
- healthIndex: { title: '', __show__: false },
- },
- }
- })
|