Vue实现可拖拽组件的方法

【Vue实现可拖拽组件的方法】本文为大家分享了Vue实现可拖拽、拖拽组件,供大家参考,具体内容如下
描述: 组件仅封装拖拽功能,内容通过#header、#default、#footer插槽 自定义
效果: Vue实现可拖拽组件的方法
文章图片

代码:

.drag-bar-wrapper {position: fixed; z-index: 2; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; }.drag-bar-header {background-color: #eee; cursor: move; /*拖拽鼠标样式*/}.drag-bar-content {background-color: #fff; }.drag-bar-footer {background-color: #fff; }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

    推荐阅读