zyhandgod
zyhandgod
没有一样的, ----------- const ecBar = ref({ onInit: (canvas, width, height, dpr) => { const chart = echarts.init(canvas, null, { width, height, devicePixelRatio: dpr }); chart.setOption({ title: { text: 'Bar Chart...
ec-canvas.vue------ import { defineProps, onMounted, ref } from 'vue'; import Taro from "@tarojs/taro"; import WxCanvas from './WxCanvas'; import echarts from './echarts.min.js'; // 定义props const props = defineProps({ canvasId: { type:...