src/views/visualization/rightMenu.vue
@@ -25,6 +25,12 @@ import * as echarts from 'echarts'; export default { props: { rightChartData: { type: Object, required: true }, }, data() { return { title: { @@ -34,6 +40,19 @@ } } }, watch: { rightChartData: { deep: true, handler(val) { if (val) { if(val.type=='"right1"'){ } } } } }, mounted() { this.initEchart(); },