Drag 鼠标拖拽
用于拖拽从一个位置到另一位置
基础用法
在DOM标签添加v-os-drag
添加为true
则会开启拖动,也能传入{}
选项进行配置,选项参数后面说明。
html
<os-alert
v-os-drag="true">
This is info message
</os-alert>
选项参数
参数名 | 类型 | 描述 |
---|---|---|
down | Function | 鼠标按下时的回调事件 |
over | Function | 鼠标按下不放一直拖动时的回调事件 |
up | Function | 鼠标放开时的回调事件 |
html
<os-alert
v-os-drag="{
down (event) {}
// ...
}">
This is info message
</os-alert>