## 在vue项目中使用awe-dnd插件实现图片拖拽排序

首先我这里使用的是npm安装

npm install awe-dnd --save

引入awe-dnd插件
在main.js中引入

import VueDND from 'awe-dnd'
Vue.use(VueDND)

以下是我写的一个小案例




使用过程中参考https://www.xfei.me/index.php?c=article&id=132
v-dragging="{ item: item, list: images, group: ‘img’ ,otherData: otherData }"
但是otherData我没理解具体作用,还希望各位前辈能解惑

你可能感兴趣的:(## 在vue项目中使用awe-dnd插件实现图片拖拽排序)