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 🙏

© 2026 – Pkg Stats / Ryan Hefner

vue-transfer-order

v1.0.12

Published

transfer list by order,based on elementui and vue

Downloads

18

Readme

vue-transfer-order

基于vue和element ui(el-row / el-col / el-input / el-tree / el-tag / el-button)实现的仿微信的按顺序选择文件的穿梭框。

功能

  • 点击按顺序选择文件,再次点击取消选择
  • 右侧按照顺序展示选择的文件,点击标签右侧按钮删除选择的成员
  • 支持按字搜索列表名,支持设置最多选择人数

调用方式

  • 在main.js中引入组件 import VueTransfer from 'vue-transfer-order'

Vue.use(VueTransfer);

  • 使用组件 <vue-transfer @selectNodes="selectNodes">

支持属性

  • placeholder:String 搜索框placeholder
  • initIds:Array 数据回显,已经选择的数据,
  • tagArr:Array 左侧tag标签的label,数组格式按顺序展示
  • maxSelectCount:Number 最多选择人数
  • overMaxMsg:String 超出最多选择人数的提示
  • datas:Array 数据源 默认数据格式:[{ "code": "101", "id": "101", "name": "一级机构1", "parentCode": "1", "subList": [{ "code": "10101", "id": "10101", "name": "二级机构1", "parentCode": "101", "userList": [{ "belongUnit": "10101", "name": "用户1", "sex": "男", "status": "1", "userId": "20210001" }, { "belongUnit": "10101", "name": "用户2", "sex": "男", "status": "1", "userId": "20210002" }] }, { "code": "10102", "id": "10102", "name": "二级机构2", "parentCode": "101", "userList": [{ "belongUnit": "10102", "name": "用户3", "sex": "男", "status": "1", "userId": "20210003" }, { "belongUnit": "10102", "name": "用户4", "sex": "男", "status": "1", "userId": "20210004" }] }] }]

事件

  • selectNodes 触发事件,传参选择的ids数组