## 手势图形密码
长按拖拽自定义排序,基于uni语法编译
### 基础用法
长按激活拖拽动作
```
// #ifdef MP
{{scope.name}}
// #endif
// #ifndef MP
{{scope.row.name}}
// #endif
```
### Props
css样式类需要```/deep/```穿透才能应用,部分请加入```!important```声明
| 参数 | 说明 | 类型 | 默认值 |
| ----------------------------|--------------- | -------
| value |排序的数组信息 |Array | |
| item-class |元素附加class |String | |
| active-item-class |激活拖拽的元素附加class |String | |
### Events
| 事件名 | 说明 | 回调参数 |
| ----------------------------|--------------- | -------
| init | 初始化数据完成 | Object:{top:顶部位置,left:左边位置,right:右边位置,bottom:底部位置 } |
| start | 用户长按下返回 | Object:{currentIndex:当前元素索引,touch:同longpress的touches,data:数组信息} |
| move | 拖拽移动时动作返回 | Object:{currentIndex:当前元素索引,touch:同touchmove的touches,data:数组信息} |
| end | 动作结束后返回 | Object:{currentIndex:当前元素索引,touch:同touchend的changeTouches,data:数组信息} |
| change | 数据变更 | Array:数组 |