README
vue-drag-select
A drag select component for Vue3
🔧Installation
npm i @coleqiu/vue-drag-select
yarn add @coleqiu/vue-drag-select
📘Demo
🧭Quick Guide
⚙Import
import Vue from "vue";
import VueDragSelect from "@coleqiu/vue-drag-select";
Vue.use(VueDragSelect);
🚀Usage
<script setup lang="ts">
import { ref } from 'vue';
const selection = ref([]);
const options = [ "item1", "item2", "item3" ];
</script>
<template>
<drag-select v-model="selection">
<drag-select-option v-for="item in options" :value="item" :key="item">{{item}}</drag-select-option>
</drag-select>
</template>
<style>
.drag-select-option {
width: 100px;
height: 100px;
color: #ffffff;
background: #E37E26;
}
.drag-select-option--selected {
color: #000000;
background: #5fdddc;
}
</style>
📖Ducumentation
DragSelect Attributes
Attribute | Description | Type | Default
-|-|-|-
modelValue / v-model | binding value | Array
DragSelectOption Attributes
Attribute | Description | Type | Default -|-|-|- value | binding value | string | index | --(required) disabled | whether DragSelectOption is disabled | boolean | false selectedClass | the class names of selected option | boolean | --
Component classNames
this package havn't enough styles,you can use following classNames to add styles. name | Description -|- drag-select__wrapper | the className of DragSelect itself drag-select | the className of the container of dragSelectOption drag-select__area | the className of drag area drag-select-option | the className of dragSelectOption component drag-select-option--selected | the className of dragSelectOption component which are selected drag-select-option--disabled | the className of dragSelectOption component which are disabled