用 markRaw 让echarts从监听对象变成普通对象!!
因为vue3中的数据对象是用的proxy监听的,要取值需要用value等方法取出来。
import { onMounted, ref, markRaw } from 'vue'
const chartBox = document.getElementById('chart-box');
myChart = markRaw(echarts.init(chartBox));
标签:tooltip,trigger,vue3,markRaw,echarts,axis From: https://www.cnblogs.com/L-hailong/p/16950902.html