onUnmounted(() => {
chartInstance.dispose();
});
onMounted(async () => {
chartInstance = echarts.init(map.value as HTMLElement, theme);
const geoJSON = await getMap('province');
initChart(geoJSON);
});
onUnmounted is called when there is no active component instance to be associated with. Lifecycle injection APIs can only be used during execution of setup(). If you are using async setup(), make sure to register lifecycle hooks before the first await statement.
请问这是什么原因,我也没有使用顶层await
stackoverflow 上面有类似的情况,应该是用错了 API,给你参考一下
参考:https://stackoverflow.com/que...