npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

Iโ€™ve always been into building performant and accessible sites, but lately Iโ€™ve been taking it extremely seriously. So much so that Iโ€™ve been building a tool to help me optimize and monitor the sites that I build to make sure that Iโ€™m making an attempt to offer the best experience to those who visit them. If youโ€™re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, ๐Ÿ‘‹, Iโ€™m Ryan Hefnerย  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If youโ€™re interested in other things Iโ€™m working on, follow me on Twitter or check out the open source projects Iโ€™ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soonโ€“ish.

Open Software & Tools

This site wouldnโ€™t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you ๐Ÿ™

ยฉ 2024 โ€“ย Pkg Stats / Ryan Hefner

ml-vue-drag-tree

v1.3.3

Published

๐Ÿ›A vue tree๐ŸŽ„๐Ÿ component which support drag & drop ๐Ÿ‘†๐Ÿ‘‡ and nested

Downloads

115

Readme

ml-vue-drag-tree

this pro is base on shuirong's vue-drag-tree,thanks very much๐Ÿ˜˜๐Ÿ˜˜๐Ÿ˜˜

VersionDownloadsLicense

It's a tree๐ŸŽ„ components(Vue2.x) that allow you to drag and drop the node to exchange their data .Support nested and list

Feature

  • Drag and Drop the tree node, even between two different levels
  • Controls whether a particular node can be dragged and whether the node can be plugged into other nodes
  • Support nested and list
  • data and view two-way-data-binding

ไธญๆ–‡ || Please Star! if it's helpful Example Project

Preview


demo

Getting Start


Install

npm install ml-vue-drag-tree --save

Usage

A Simple Project Using ml-vue-drag-tree

main.js

import Vue from 'vue'
import VueDragTree from 'ml-vue-drag-tree'
import 'ml-vue-drag-tree/dist/vue-drag-tree.min.css'

Vue.use(VueDragTree)

1.3.0 New Features


  • style support ie
  • css -> less
  • fixed mouse icon problems when dragover menu-item

API


Attributes

| Name | Description | Type | Default | | :--------- | :------------------------------------------------- | :------- | :------- | | data | data of the tree | Array | ๏ผ๏ผ | | allowDrag | Judging which node can be dragged | Function | ()=>true | | allowDrop | Judging which node can be plugged into other nodes | Function | ()=>true | | openNames | opened submenu names | Array | ()=>[] | | activeName | actived menuitem id | String | '' | | maxCharNum | text max show number in chinese char | Number | 6 |

Events

| Name | Description | arguments | | -------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | | current-node-clicked | Tell you which node was clicked | (model,component) model: node data was clicked๏ผŽ component: VNode data for the node was clicked | | on-data-change | When Tree Data Change | (val) new tree data | | on-node-change | When Node Data Change๏ผŒreturn event's type and changed parent node's data and drag node's data | (type, parentNode, node) type: 'remove'/'add' event's type parentNode: changed parentNode node: dragged node's data | | on-open-name-change | When openNames change, return new openNames Array | (arr) new openNames | | drag | Theย dragย event is fired every few hundred milliseconds as an node is being dragged by the user | (model,component,e) model: node data was dragged. component: VNode data for the node was dragged; e: drag event | | drag-enter | Theย drag-enterย event is fired when a dragged node enters a valid drop target | (model,component,e) model: data of the valid drop target; component: VNode of the valid drop target; e: drag event | | drag-leave | Theย drag-leaveย event is fired when a dragged node leaves a valid drop target | (model,component,e) model: data of the valid drop target; component: VNode of the valid drop target; e: drag event | | drag-over | The drag-over event is fired when an node is being dragged over a valid drop target | (model,component,e) model: data of the valid drop target; component: VNode of the valid drop target; e: drag event | | drag-end | Theย drag-endย event is fired when a drag operation is being ended | (model,component,e) model: node data was dragged. component: VNode data for the node was dragged; e: drag event | | drop | Theย dropย event is fired when an node is dropped on a valid drop target. | (model,component,e) model: data of the valid drop target; component: VNode of the valid drop target; e: drag event |

License


The 996ICU License (996ICU)