logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue3使用echarts绘制中国地图

效果图china.json{ "type": "FeatureCollection","features":[{"type": "Feature","properties":{"id":"65","size":"550","name":"新疆维吾尔自治区","cp":[84.9023,42.148],"childNum":18},"geometry":{"type":"Polygon","coor

#echarts
[Vue warn]: Invalid watch source: “xxx”. A watch source can only be a getter/effect function,

watch监听问题watch(getOrganizationData.current,() => {getPersonList()})我想监听页码的变化来发送请求,改变当前的显示内容,错误:watch要的数据是响应式的解决方案watch(()=>getOrganizationData.current,() => {getPersonList()})...

到底了