movable-view里添加textarea后,拖动不了
- 当前 Bug 的表现(可附上截图)
- 预期表现
能正常拖动
- 复现路径
- 提供一个最简复现 Demo
<!--index.wxml--> < view class = "container" > < movable-area style = "height: 400px; width: 320px; background: red;" > < movable-view style = "height: 100px; width: 120px; background: blue;" x = "{{x}}" y = "{{y}}" direction = "all" out-of-bounds = "true" damping = "100" frictio = "100" > < textarea placeholder = "请输入..." ></ textarea > </ movable-view > </ movable-area > </ view > |