您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“vue如何實現拖拽添加”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“vue如何實現拖拽添加”這篇文章吧。
效果圖
并沒有判斷是否重復,沒有刪除舊數據
數據體
<MyShuttle :dataOrigin='[ { Name:"數據001", Id:"數001", }, { Name:"數據002", Id:"數001", }, { Name:"數據003", Id:"數001", }]' :space='[{ Name:"右001", Id:"右001", }]' />
代碼
draggable開啟可拖動
@dragenter.prevent @dragover.prevent // 阻止瀏覽器默認行為,不然會顯示一個叉叉,不好看
阻止默認行為
@dragleave.stop=“dragleave($event, ‘main')”
進入離開當前元素都會觸發
@dragend.stop=“dragEnd($event, item)”
放下拖拽內容觸發
標記 這個很重要!!! 這個決定了拖拽事件的行為。當點擊開始拖拽之后,鼠標點擊所在的位置就是標記。
dragstart:當單擊下鼠標,并移動之后執行。
drag:在dragstart執行之后,鼠標在移動時連續觸發。
dragend:當拖拽行為結束,也就是松開鼠標的時候觸發。
dragenter:當正在拖拽的元素的標記進入某個Dom元素時觸發,自身首先會觸發。被進入的Dom元素會觸發這個事件。
dragover:當拖拽的元素的標記在進入的Dom元素上移動時觸發,在自身移動時也會觸發。
dragleave:當拖拽的元素在離開進入的Dom時觸發。
H5拖拽屬性 draggable
draggable:當需要某個元素可以拖拽時,需設置為true,默認為false。選中的文本、圖片、鏈接默認可以拖拽。
DataTransfer對象:該屬性用于保存拖放的數據和交互信息,該組件沒有使用到,暫忽略。
當鼠標移動到目標div盒子才會追加,簡單的才最能說明問題
<template> <div class="MyShuttle"> <div class="MyShuttleLeft"> <div class="title">數據源</div> <div class="dataBox" @dragleave.stop="dragleave($event, 'main')"> <div v-for="(item, i) in dataOrigin" :key="i" class="dataList" draggable @dragenter.prevent @dragover.prevent @dragstart.stop="dragstart($event, item)" @dragend.stop="dragEnd($event, item)"> {{ item.Name}} </div> </div> </div> <div class="MyShuttleCenter"></div> <div class="MyShuttleRight"> <div class="title">數據源</div> <div ref="MyShuttleRight" class="dataBox"> <div v-for="(item, i) in spaceList" :key="i" class="dataList" draggable @dragenter.prevent @dragover.prevent> {{ item.Name}} </div> </div> </div> </div> </template> <script> export default { name: '', components: {}, props: { dataOrigin: { type: Array }, space: { type: Array } }, data() { return { spaceList: this.space, isDragStatus: false } }, computed: {}, watch: {}, created() { }, mounted() { }, methods: { dragleave(e, item) { // console.log(e, item) if (item === 'main') { this.isDragStatus = true } else { this.isDragStatus = false } // console.log(this.isDragStatus) }, dragstart(e, item) { // console.log(e, item) }, dragEnd(e, item) { const top = this.$refs.MyShuttleRight.getBoundingClientRect().top const right = this.$refs.MyShuttleRight.getBoundingClientRect().right const bottom = this.$refs.MyShuttleRight.getBoundingClientRect().bottom const left = this.$refs.MyShuttleRight.getBoundingClientRect().left console.log(top, right, bottom, left) console.log(e.clientX, e.clientY, item) if (this.isDragStatus && e.clientY > top && e.clientY < bottom && e.clientX > left && e.clientX < right) { this.spaceList.push(item) console.log(this.spaceList.indexOf(item)) } } } } </script> <style scoped lang="scss"> .MyShuttle { width: 100%; height: 308px; display: flex; justify-content: space-between; // 左右盒子公共樣式 .MyShuttleLeft, .MyShuttleRight { border: 1px solid #dddddd; border-collapse: collapse; .title { box-sizing: border-box; width: 100%; height: 40px; background: #f5f5f5; border-radius: 4px 4px 0px 0px; border-bottom: 1px solid #dddddd; padding: 10px 16px; font-size: 14px; font-family: PingFangSC-Regular, PingFang SC; font-weight: 400; color: #333333; line-height: 20px; } .dataBox { width: 100%; height: 228px; overflow: auto; padding: 6px 0; .dataList { width: 96%; height: 40px; box-sizing: border-box; font-size: 14px; font-family: PingFangSC-Regular, PingFang SC; font-weight: 400; color: #666; line-height: 20px; margin: 0 2% 10px; padding: 10px 16px; border: 1px solid #ddd; border-radius: 4px; user-select: none; cursor: pointer; &:hover { color: #01bc77; background: rgba(1, 188, 119, 0.1); } } } } .MyShuttleLeft { width: 362px; height: 100%; background: #ffffff; border-radius: 4px; } .MyShuttleCenter { width: 64px; height: 100%; } .MyShuttleRight { width: 362px; height: 100%; background: #ffffff; border-radius: 4px; } } </style>
以上是“vue如何實現拖拽添加”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。