tongue-analysis.ts 455 B

12345678910111213141516171819
  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. console.log(data,'12-->');
  9. this.setData(data);
  10. })
  11. }
  12. },
  13. properties: {},
  14. data: {
  15. dataset: [] as AnyArray,
  16. },
  17. methods: {}
  18. })