Vue3拖拽插件(vuedraggable@next)

简介: vuedraggable 是一款 Vue2 拖拽插件,可轻松实现列表项的拖拽排序与交互。通过简单配置,即可在不同区域间拖动元素并实现数据同步。支持多种事件监听和自定义样式。

参考文档
官方网站

效果如下图:vuedraggable@4.1.0 在线预览

在这里插入图片描述

安装插件

pnpm add vuedraggable@next

引入并使用

<script lang="ts" setup>
import { ref, watchEffect } from 'vue'
import Draggable from 'vuedraggable'

const players = ref([
  { name: 'curry', id: 1 },
  { name: 'klay', id: 2 },
  { name: 'green', id: 3 },
  { name: 'kobe', id: 4 },
  { name: 'james', id: 5 },
  { name: 'jordan', id: 6 },
  { name: 'dear', id: 7 },
  { name: 'muse', id: 8 }
])
const roles = ref([
  { name: '李白', id: 1 },
  { name: '韩信', id: 2 },
  { name: '公孙离', id: 3 },
  { name: '李元芳', id: 4 },
  { name: '关羽', id: 5 },
  { name: '诸葛亮', id: 6 },
  { name: '澜', id: 7 },
  { name: '吕布', id: 8 }
])

watchEffect(() => {
  console.log('players:', players.value)
})
watchEffect(() => {
  console.log('roles:', roles.value)
})
function onStart (e: any) { // 开始拖动时触发的事件
  console.log('开始拖拽 start:', e)
  console.log('拖拽操作前的索引oldIndex:', e.oldIndex)
  console.log('拖拽完成后的索引newIndex:', e.newIndex)
}
function onEnd (e: any) { // 拖动完成时触发的事件
  console.log('结束拖拽 end:', e)
  console.log('拖拽操作前的索引oldIndex:', e.oldIndex)
  console.log('拖拽完成后的索引newIndex:', e.newIndex)
}
function onMove (evt: any, originalEvent: DragEvent) { // 拖拽move事件回调
  console.log('move:', evt)
  console.log('originalEvent:', originalEvent)
  // 不允许拖拽
  return evt.draggedContext.element.id !== 7 // false表示阻止,true表示不阻止
}
</script>
<template>
  <div>
    <h2 class="mb10">设置相同的 group,即可实现两个拖拽区域按钮拖动交换</h2>
    <a-row :gutter="32">
      <a-col :span="12">
        <a-card title="players (sort: false,不允许内部拖动排序,但可以拖动元素到外部 roles)">
          <!-- 参考文档:https://github.com/SortableJS/vue.draggable.next
          https://www.itxst.com/vue-draggable-next/tutorial.html -->
          <Draggable
            animation="300"
            v-model="players"
            group="human"
            :sort="false"
            item-key="id"
            @start="onStart"
            @end="onEnd"
            :move="onMove">
            <template #item="{ element }">
              <Button class="mr12 mb12">{
  { element.name }} {
  { element.id }}</Button>
            </template>
            <template #header>
              <Button class="mr12" type="primary">header</Button>
            </template>
            <template #footer>
              <Button type="primary">footer</Button>
            </template>
          </Draggable>
        </a-card>
      </a-col>
      <a-col :span="12">
        <a-card title="roles (id 值为偶数不可拖动,奇数可拖动)">
          <Draggable
            animation="300"
            v-model="roles"
            group="human"
            filter=".unmover"
            draggable=".mover"
            item-key="id"
            @start="onStart"
            @end="onEnd"
            :move="onMove">
            <template #item="{ element }">
              <Button class="mr12 mb12" :class="[element.id % 2 === 0 ? 'unmover' : 'mover']">{
  { element.name }} {
  { element.id }}</Button>
            </template>
            <template #header>
              <Button class="mr12" type="primary">header</Button>
            </template>
            <template #footer>
              <Button type="primary">footer</Button>
            </template>
          </Draggable>
        </a-card>
      </a-col>
    </a-row>
  </div>
</template>
<style lang="less" scoped>
.mr12 {
  margin-right: 12px;
}
.mb12 {
  margin-bottom: 12px;
}
</style>
相关文章
|
18天前
|
存储 JavaScript 前端开发
vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
【10月更文挑战第21天】 vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
|
15天前
|
JavaScript 前端开发 开发者
Vue 3中的Proxy
【10月更文挑战第23天】Vue 3中的`Proxy`为响应式系统带来了更强大、更灵活的功能,解决了Vue 2中响应式系统的一些局限性,同时在性能方面也有一定的提升,为开发者提供了更好的开发体验和性能保障。
35 7
|
16天前
|
前端开发 数据库
芋道框架审批流如何实现(Cloud+Vue3)
芋道框架审批流如何实现(Cloud+Vue3)
38 3
|
15天前
|
JavaScript 数据管理 Java
在 Vue 3 中使用 Proxy 实现数据双向绑定的性能如何?
【10月更文挑战第23天】Vue 3中使用Proxy实现数据双向绑定在多个方面都带来了性能的提升,从更高效的响应式追踪、更好的初始化性能、对数组操作的优化到更优的内存管理等,使得Vue 3在处理复杂的应用场景和大量数据时能够更加高效和稳定地运行。
36 1
|
15天前
|
JavaScript 开发者
在 Vue 3 中使用 Proxy 实现数据的双向绑定
【10月更文挑战第23天】Vue 3利用 `Proxy` 实现了数据的双向绑定,无论是使用内置的指令如 `v-model`,还是通过自定义事件或自定义指令,都能够方便地实现数据与视图之间的双向交互,满足不同场景下的开发需求。
36 1
|
17天前
|
前端开发 JavaScript
简记 Vue3(一)—— setup、ref、reactive、toRefs、toRef
简记 Vue3(一)—— setup、ref、reactive、toRefs、toRef
|
18天前
Vue3 项目的 setup 函数
【10月更文挑战第23天】setup` 函数是 Vue3 中非常重要的一个概念,掌握它的使用方法对于开发高效、灵活的 Vue3 组件至关重要。通过不断的实践和探索,你将能够更好地利用 `setup` 函数来构建优秀的 Vue3 项目。
|
21天前
|
JavaScript API
vue3知识点:ref函数
vue3知识点:ref函数
30 2
|
21天前
|
API
vue3知识点:reactive函数
vue3知识点:reactive函数
24 1
|
21天前
|
JavaScript 前端开发 API
vue3知识点:Vue3.0中的响应式原理和 vue2.x的响应式
vue3知识点:Vue3.0中的响应式原理和 vue2.x的响应式
24 0