New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

vue-virtual-sortable

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-virtual-sortable

A virtual scrolling list component that can be sorted by dragging

latest
Source
npmnpm
Version
2.1.2
Version published
Maintainers
1
Created
Source

vue-virtual-sortable

npm npm vue2 Software License

A virtual scrolling list component that can be sorted by dragging

For Vue 3 support, see here

Live demo

Simple usage

npm i vue-virtual-sortable

Root component:

<template>
  <!--
    :handle="'I'" // use tagName 
    :handle="'.handle'" // use class
    :handle="'#handle'" // use id
  -->
  <virtual-list v-model="list" :data-key="'id'" :handle="'.handle'">
    <template slot="item" slot-scope="{ record, index, dataKey }">
      <div>
        <span class="handle">{{ record.id }}</span>
        <p>{{ record.text }}</p>
      </div>
    </template>
    <template slot="header">
      <div class="header">header</div>
    </template>
    <template slot="footer">
      <div class="footer">footer</div>
    </template>
  </virtual-list>
</template>

<script>
import virtualList from 'vue-virtual-sortable';

export default {
  name: 'root',
  components: { virtualList },
  data () {
    return {
      list: [{ id: '1', text: 'a' }, { id: '2', text: 'b' }, ...];
    }
  },
}
</script>

Emits

EmitDescription
topScrolled to top of scroll element
bottomScrolled to bottom of scroll element
dragElement dragging started
dropElement dragging is completed
rangeChangeList rendering range changed

Props

Required props

PropTypeDescription
data-keyStringThe unique identifier of each piece of data, in the form of 'a.b.c'
v-modelArrayThe data that needs to be rendered

Optional props

Commonly used

PropTypeDefaultDescription
keepsNumber30The number of lines rendered by the virtual scroll
sizeNumber-The estimated height of each piece of data, it will be automatically calculated
handleFunction/String-Drag handle selector within list items
groupObject/String-Set value to allow drag between different lists
directionvertical | horizontalverticalScroll direction
scrollerDocument | HTMLElement-Virtual list scrolling element
lockAxisx | y-Axis on which dragging will be locked
tableModeBooleanfalseDisplay with table and tbody
keepOffsetBooleanfalseWhen scrolling up to load data, keep the same offset as the previous scroll
debounceTimeNumber0Scroll debounce time
throttleTimeNumber0Scroll throttle time

Uncommonly used

PropTypeDefaultDescription
bufferNumberMath.round(keeps / 3)Buffer size to detect range change
disabledBooleanfalseDisables the sortable if set to true
sortableBooleantrueWhether the current list can be sorted by dragging
draggableString[role="item"]Specifies which items inside the element should be draggable.
animationNumber150Animation speed moving items when sorting
autoScrollBooleantrueAutomatic scrolling when moving to the edge of the container
scrollSpeedObject{ x: 10, y: 10 }Vertical&Horizontal scrolling speed (px)
scrollThresholdNumber55Threshold to trigger autoscroll
delayNumber0Time in milliseconds to define when the sorting should start
delayOnTouchOnlyBooleanfalseOnly delay on press if user is using touch
appendToBodyBooleanfalseAppends the ghost element into the document's body
dropOnAnimationEndBooleantrueWhether to trigger the drop event when the animation ends
rootTagStringdivLabel type for root element
wrapTagStringdivLabel type for list wrap element
wrapClassString''Class name for list wrap element
wrapStyleObject{}Style object for list wrap element
ghostClassString''Class name for the mask element when dragging
ghostStyleObject{}Style object for the mask element when dragging
chosenClassString''Class name for the chosen item
placeholderClassString''Class name for the drop placeholder

Methods

Use ref to get the method inside the component

MethodDescription
getSize(key)Get the size of the current item by unique key value
getOffset()Get the current scroll height
getClientSize()Get wrapper element client viewport size (width or height)
getScrollSize()Get all scroll size (scrollHeight or scrollWidth)
scrollToTop()Scroll to top of list
scrollToBottom()Scroll to bottom of list
scrollToKey(key, align)Scroll to the specified data-key position
scrollToIndex(index, align)Scroll to the specified index position
scrollToOffset(offset)Scroll to the specified offset

Keywords

vue

FAQs

Package last updated on 06 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts