| 1234567891011121314151617181920212223242526 | import {  createElement} from '@antv/f2';import Chart from './chart';import {  jsx as _jsx} from "@antv/f2/jsx-runtime";Component({  data: {    onRenderChart: () => {}  },  methods: {    render(data) {      this.setData({        onRenderChart: () => {          return this.renderChart(data);        }      });    },    renderChart(data) {      return createElement(Chart, {        data      });    }  }})
 |