| 12345678910111213 |
- import I18nBehavior from "../../../../i18n/behavior";
- // module/health/components/card-analysis/card-analysis-exception.ts
- Component({
- behaviors: [I18nBehavior],
- properties: {
- dataset: { type: Array, value: [] },
- },
- data: {
- i18n: {
- analysis: { __showException__: false },
- },
- },
- })
|