tongue-analysis.ts 411 B

1234567891011121314151617
  1. import PageContainerBehavior from "../../../../core/behavior/page-container.behavior";
  2. // module/health/pages/tongue-analysis/tongue-analysis.ts
  3. Component({
  4. behaviors: [PageContainerBehavior],
  5. lifetimes: {
  6. attached() {
  7. this.getOpenerEventChannel().on('load', (data) => {
  8. this.setData(data);
  9. })
  10. }
  11. },
  12. properties: {},
  13. data: {
  14. dataset: [] as AnyArray,
  15. },
  16. methods: {}
  17. })