- Draggable 拖拽
- Variables
- Events
Draggable 拖拽
用该组件包裹后可以变成拖拽组件
TIP
1.0.9+
<div style="position:relative;height:400px;">
<div class="avue-grid"></div>
<avue-draggable >
<div style="width:200px;height:200px;background:red">
</div>
</avue-draggable>
</div>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
Variables
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
disabled | 是否禁止拖动 | — | false | |
width | 元素的宽度 | — | — | |
height | 元素的高度 | — | — | |
top | 元素的x位置 | — | 0 | |
left | 元素的y位置 | — | 0 | |
z-index | 图层的序号 | - | 1 |
Events
事件名 | 说明 | 参数 |
---|---|---|
focus | 聚焦时的回调 | - |
postion | 位置发生变化的回调 | - |
blur | 失去焦点的回调 | - |
change | 任意参数改变的回调 | - |
resize | 尺寸发生变化的回调 | - |