diff --git a/src/components/Echart/src/charts.vue b/src/components/Echart/src/charts.vue index 70cf468..d4f1a34 100644 --- a/src/components/Echart/src/charts.vue +++ b/src/components/Echart/src/charts.vue @@ -25,6 +25,7 @@ const props = defineProps({ }) const elRef = ref() let chartRef: Nullable = null +let observer:Nullable=null const initChart = () => { echarts.registerMap('yx', YX as any) @@ -33,6 +34,8 @@ const initChart = () => { chartRef.setOption(props.options, true) } } + + watch( () => props.options, (options) => { @@ -73,7 +76,7 @@ onActivated(() => { defineExpose({ getChartRef, - resizeHandler + resizeHandler, })