Socket
Socket
Sign inDemoInstall

vue-draggable-next

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-draggable-next

Vue 3 drag-and-drop component based on Sortable.js


Version published
Weekly downloads
46K
decreased by-11.28%
Maintainers
1
Weekly downloads
 
Created
Source

vue-draggable-next

Vue 3 drag-and-drop component based on Sortable.js

Installation

npm install vue-draggable-next
//or
yarn add vue-draggable-next
<template>
  <div class="flex m-10">
    <draggable class="dragArea list-group w-full" :list="list" @change="log">
      <div
        class="list-group-item bg-gray-300 m-1 p-3 rounded-md text-center"
        v-for="element in list"
        :key="element.name"
      >
        {{ element.name }}
      </div>
    </draggable>
  </div>
</template>
<script>
  data() {
    return {
      enabled: true,
      list: [
        { name: 'John', id: 1 },
        { name: 'Joao', id: 2 },
        { name: 'Jean', id: 3 },
        { name: 'Gerard', id: 4 },
      ],
      dragging: false,
    }
  },
  methods: {
    log(event) {
        console.log(event)
    },
</script>

🌸 Thanks

This project is heavily inspired by the following awesome projects.

  • SortableJS/Vue.Draggable

Thanks!

Keywords

FAQs

Package last updated on 14 Aug 2020

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc