• Draggable 拖拽
    • Variables
    • Events

    Draggable 拖拽

    用该组件包裹后可以变成拖拽组件

    TIP

    1.0.9+

    Draggable 拖拽 - 图1

    1. <div style="position:relative;height:400px;">
    2. <div class="avue-grid"></div>
    3. <avue-draggable >
    4. <div style="width:200px;height:200px;background:red">
    5. </div>
    6. </avue-draggable>
    7. </div>
    8. <script>
    9. export default {
    10. data() {
    11. return {
    12. }
    13. },
    14. methods: {
    15. }
    16. }
    17. </script>

    Variables

    参数说明类型可选值默认值
    disabled是否禁止拖动false
    width元素的宽度
    height元素的高度
    top元素的x位置0
    left元素的y位置0
    z-index图层的序号-1

    Events

    事件名说明参数
    focus聚焦时的回调-
    postion位置发生变化的回调-
    blur失去焦点的回调-
    change任意参数改变的回调-
    resize尺寸发生变化的回调-