详细问题描述
通过push方法更新地图线路,nvue无法热更新的样子
vue:
nvue
复现代码(所有环境已是最新,hb2.5.9.20200203-alpha)
updatepolyine(res) {
console.log(this.polyline)
/*res为其他方法模拟数据*/
res = {
points: [{
latitude: 39.781892,
longitude: 116.293413
},
{
latitude: 39.787600,
longitude: 116.391842
},
{
latitude: 39.733187,
longitude: 116.417932
},
{
latitude: 39.704653,
longitude: 116.338255
}
],
fillColor: '#FFCCFF',
strokeWidth: 3,
strokeColor: '#CC99CC',
zIndex: 11
};
this.polyline.push(res)
}