Vue Grid Layout -适用Vue.js的栅格布局系统

01 - 基本 | Vue Grid Layout -️ 适用Vue.js的栅格布局系统 (jbaysolutions.github.io)

vuedraggabl

vue.draggable两列或多列之间相互拖动 - itxst.com

<template><div><!--使用draggable组件--><div class="itxst"><div class="col"><div class="title">国内网站</div><draggablev-model="arr1"group="site"animation="300"dragClass="dragClass"ghostClass="ghostClass"chosenClass="chosenClass"@start="onStart"@end="onEnd"><transition-group><div class="item" v-for="item in arr1" :key="item.id">{{item.name}}</div></transition-group></draggable></div><div class="col"><div class="title">你可以把左边的元素拖到右边</div><draggablev-model="arr2"group="site"animation="300"dragClass="dragClass"ghostClass="ghostClass"chosenClass="chosenClass"@start="onStart"@end="onEnd"><transition-group><div class="item" v-for="item in arr2" :key="item.id">{{item.name}}</div></transition-group></draggable></div></div></div>
</template>
<style scoped>
/*定义要拖拽元素的样式*/
.ghostClass {background-color: blue !important;
}
.chosenClass {background-color: red !important;opacity: 1 !important;
}
.dragClass {background-color: blueviolet !important;opacity: 1 !important;box-shadow: none !important;outline: none !important;background-image: none !important;
}
.itxst {margin: 10px;
}
.title {padding: 6px 12px;
}
.col {width: 40%;flex: 1;padding: 10px;border: solid 1px #eee;border-radius: 5px;float: left;
}
.col + .col {margin-left: 10px;
}.item {padding: 6px 12px;margin: 0px 10px 0px 10px;border: solid 1px #eee;background-color: #f1f1f1;
}
.item:hover {background-color: #fdfdfd;cursor: move;
}
.item + .item {border-top: none;margin-top: 6px;
}
</style>
<script>
// 导入draggable组件
import draggable from 'vuedraggable'
export default {// 注册draggable组件components: {draggable},data () {return {drag: false,// 定义要被拖拽对象的数组arr1: [{ id: 1, name: 'www.itxst.com' },{ id: 2, name: 'www.jd.com' },{ id: 3, name: 'www.baidu.com' },{ id: 3, name: 'www.taobao.com' }],arr2: [{ id: 1, name: 'www.google.com' },{ id: 2, name: 'www.msn.com' },{ id: 3, name: 'www.ebay.com' },{ id: 4, name: 'www.yahoo.com' }]}},methods: {// 开始拖拽事件onStart () {this.drag = true},// 拖拽结束事件onEnd () {this.drag = false}}
}
</script>

vue-draggable-resizable-gorkys

<template><divstyle="height: 800px; width: 1200px; border: 1px solid red; position: relative;margin: 0 auto"><vue-draggable-resizable:w="200":h="200":parent="true":debug="false":min-width="200":min-height="200":isConflictCheck="true":snap="true":snapTolerance="10"@refLineParams="getRefLineParams"class="test1"></vue-draggable-resizable><vue-draggable-resizable:w="200":h="200":parent="true":x="210":debug="false":min-width="200":min-height="200":isConflictCheck="true":snap="true":snapTolerance="10"@refLineParams="getRefLineParams"class="test2"></vue-draggable-resizable><vue-draggable-resizable:w="200":h="200":parent="true":x="420":debug="false":min-width="200":min-height="200":isConflictCheck="true":snap="true":snapTolerance="10"@refLineParams="getRefLineParams"class="test3"></vue-draggable-resizable><!--辅助线--><spanclass="ref-line v-line"v-for="(item,index) in vLine":key="index+'_v'"v-show="item.display":style="{ left: item.position, top: item.origin, height: item.lineLength}"/><spanclass="ref-line h-line"v-for="(item,index) in hLine":key="index+'_h'"v-show="item.display":style="{ top: item.position, left: item.origin, width: item.lineLength}"/><!--辅助线END--></div>
</template><script>
import VueDraggableResizable from 'vue-draggable-resizable-gorkys'
import 'vue-draggable-resizable-gorkys/dist/VueDraggableResizable.css'export default {components: {VueDraggableResizable},data () {return {vLine: [],hLine: []}},methods: {// 辅助线回调事件getRefLineParams (params) {const { vLine, hLine } = paramsthis.vLine = vLinethis.hLine = hLine}}
}
</script><style>
.test1 {background-color: rgb(239, 154, 154);
}
.test2 {background-color: rgb(129, 212, 250);
}
.test3 {background-color: rgb(174, 213, 129);
}
</style>

vue组件的拖动排序相关推荐

  1. vue可拖拽排序列表组件

    先看效果: dragable-lists.vue组件源码: <template><div class="drag-lists" ref="drag-li ...

  2. 10 分钟上手 Vue 组件 Vue-Draggable

    Vue 综合了 Angualr 和 React 的优点,因其易上手,轻量级,受到了广泛应用.成为了是时下火热的前端框架,吸引着越来越多的前端开发者! 本文将通过一个最简单的拖拽例子带领大家快速上手 V ...

  3. vue组件化开发实践

    前言 公司目前制作一个H5活动,特别是有一定统一结构的活动,都要码一个重复的轮子.后来接到一个基于模板的活动设计系统的需求,便有了一下的内容.首先会对使用Vue进行开发的一些前期需要的技术储备进行简单 ...

  4. vue.js 拖拽排序_快速轻巧的Vue.js拖放可排序库

    vue.js 拖拽排序 vue-smooth-dnd (vue-smooth-dnd) A fast and lightweight drag&drop, sortable library f ...

  5. 小程序自定义拖动排序(uniapp)

    1.用到的组件和事件 1)组件movable-area,movable-view 2) @touchend(拖动离开事件),movable-view的onChange事件,自定义克隆事件dragCha ...

  6. draggable布局 vue_10 分钟上手 Vue 组件 Vue-Draggable

    Vue 综合了 Angualr 和 React 的优点,因其易上手,轻量级,受到了广泛应用.成为了是时下火热的前端框架,吸引着越来越多的前端开发者! 本文将通过一个最简单的拖拽例子带领大家快速上手 V ...

  7. vue 新手指引_精通react/vue组件设计之快速实现一个可定制的进度条组件

    前言 这篇文章是笔者写组件设计的第四篇文章,之所以会写组件设计相关的文章,是因为作为一名前端优秀的前端工程师,面对各种繁琐而重复的工作,我们不应该按部就班的去"辛勤劳动",而是要根 ...

  8. 【Android 事件分发】ItemTouchHelper 实现拖动排序

    Android 事件分发 系列文章目录 [Android 事件分发]事件分发源码分析 ( 驱动层通过中断传递事件 | WindowManagerService 向 View 层传递事件 ) [Andr ...

  9. Antd Vue 组件库之Table表单

    Antd Vue 组件库之Table表单 Table 表格 展示行列数据. 何时使用 当有大量结构化的数据需要展现时: 当需要对数据进行排序.搜索.分页.自定义操作等复杂行为时. 如何使用 指定表格的 ...

最新文章

  1. 如何将OpenCV中的Mat类绑定为OpenGL中的纹理
  2. java runtime environment 官网_Java Runtime Environment SE Development Kit
  3. 项目: 推箱子图形化游戏 【C++ / C】
  4. uboot学习之三-----uboot启动第一阶段--start.S之一
  5. 一个数据仓库转型者眼中的数据挖掘
  6. 超详细 | 21张图带你领略集合的线程不安全
  7. java编码gbk的不可_解决 java “错误:编码GBK 的不可映射字符”
  8. webpack教程——css的加载
  9. 毕设题目:Matlab语音隐写
  10. PDF文档转换平台的核心技术-开源解决方案
  11. uniapp——点击图片放大预览
  12. html源码taptap,taptap开源应用电脑版
  13. 数学分析高等代数考研试题荟萃[更新至2017年12月15日]
  14. oracle数据库lpad,Oracle的lpad与rpad函数的应用
  15. 无盘服务器chkdsk *: /f)修复命令,让你的电脑运行更快点 使用CHKDSK/F磁盘修复命令...
  16. 为什么我推荐你用语雀记笔记?
  17. 2021信息安全工程师学习笔记(四)
  18. 苹果xsmax怎么开机_粉丝水洗苹果XS MAX手机不开机,Face ID报废,你还这么做吗?...
  19. 同余 在计算机中的应用 算法,线性乘同余法在购车摇号中的应用
  20. 以数字技术推动行业跃迁,容联云抢先迈进云联络中心智能化阶段

热门文章

  1. 二叉树的遍历规则(前序遍历、后序遍历、中序遍历)
  2. 一位游戏制作人的“页游之惑”
  3. TX2(Linux)在Qt中调用python函数
  4. python中函数的定义包括_python中函数的定义及调用
  5. Webshell 网络安全应急响应
  6. [转帖]海思大佬称华为CPU同频追平AMD 注水吹嘘玩文字游戏?
  7. ACWING蓝桥杯每日一题python
  8. 今阶段面试笔试常见问题总结
  9. mysql异地多活方案_基于MGR高可用异地多活方案-阿里云开发者社区
  10. 趣学呗老师整理:初中英语60个常见介词短语!