Select A simple vue drag selector component Aug 01, 2019 1 min read Vue-Drag-Selector A simple vue drag selector component. View demo View Github install npm i vue-drag-selector import // main.js import VueDragSelector from "vue-drag-selector"; Vue.use(VueDragSelector); Vue Usage <template> <div> <drag-selector v-model="checkedList" @change="handleDragSelectorChange" class="drag-selector"> <drag-selector-item v-for="(item, index) in myDragList" :value="item" :key="index" class="drag-selector__item"> {{ item }} </drag-selector-item> </drag-selector> {{ checkedList }} </div> </template> <script> export default { name: "app", data() { return { checkedList: [], myDragList: [ { a: 1, b: 5 }, { a: 2, b: 6 }, { a: 3, b: 7 } ] }; }, methods: { handleDragSelectorChange(checkedList) { console.log(checkedList); } } }; </script> React JSX GitHub xubaifuCode/vue-drag-selector?? — Read MoreDownload as zip SelectDrag
Select A flexible & modern select-input control for Vue 3 The Vue3-Select-Component offers a comprehensive solution for creating select controls in Vue 3 applications. 13 February 2024
Drag Vue-draggable-plus: The Universal Drag-and-Drop Solution for Vue Universal Drag-and-Drop Component Supporting both Vue 3 and Vue 2 07 February 2024
Drag A Vue component for making elements draggable A Vue component for making elements draggable 03 January 2024