card-analysis-exception.ts 308 B

12345678910111213
  1. import I18nBehavior from "../../../../i18n/behavior";
  2. // module/health/components/card-analysis/card-analysis-exception.ts
  3. Component({
  4. behaviors: [I18nBehavior],
  5. properties: {
  6. dataset: { type: Array, value: [] },
  7. },
  8. data: {
  9. i18n: {
  10. analysis: { __showException__: false },
  11. },
  12. },
  13. })