请教movable-view动态改变direction参数问题,谢谢!!
新手入门中,初始化direction为all,在longtap响应中将direction置为none,不在响应拖动,实现过程中发现direction置为none后还是可以拖拽,求大神指点,不胜感激!!
同时尝试了disable,发现增加了disable后,无论设置为true还是false,都无法再进行拖拽
<movable-view class="movable-view" :direction="direction" scale-value="1" scale-min="1" scale="true" scale-max="4" @scale="scale" @change="onChange">text</movable-view>
data() {
return {
direction:"all",
//disabled:"false",
}
},
longtap(event){
this.direction = "none"
},
我也遇到了 同样的问题,求方案