您好,登錄后才能下訂單哦!
這篇文章主要介紹了vue3怎么使用vuedraggable實(shí)現(xiàn)拖拽功能的相關(guān)知識,內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇vue3怎么使用vuedraggable實(shí)現(xiàn)拖拽功能文章都會有所收獲,下面我們一起來看看吧。
1、npm i vuedraggable -S,使用這個命令,vue3會報錯,如下圖
2、使用npm uninstall vuedraggable -S 卸載,再使用npm i -S vuedraggable@next下載最新版
3、vue使用代碼如下:
<template> <div> <h2 class="title">拖拽</h2> <draggable class="wrapper" v-model="list" @start="drag = true" @end="drag = false" item-key="index" > <template #item="{ element }"> <div class="item"> <p>{{ element }}</p> </div> </template> </draggable> </div> </template> <script> import { reactive, toRefs, onMounted } from 'vue' import draggable from 'vuedraggable' export default { name: 'dragAndDrop', components: { draggable }, setup () { const state = reactive({ drag: false, list: [1, 2, 3, 4, 5, 6] }) onMounted(() => {}) return { ...toRefs(state) } } } </script> <style scoped> .title { text-align: center; color: #42b983; } .wrapper { display: flex; justify-content: center; width: 100%; } .item { width: 100px; height: 100px; font-size: 50px; text-align: center; line-height: 100px; margin: 10px; background-color: #42b983; color: #ffffff; } </style>
4、效果如下圖
關(guān)于“vue3怎么使用vuedraggable實(shí)現(xiàn)拖拽功能”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“vue3怎么使用vuedraggable實(shí)現(xiàn)拖拽功能”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。