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

v-org-tree

v1.0.12

Published

A simple organization tree chart based on Vue2.x

Downloads

1,667

Readme

v-org-tree

npm Build Status

v-org-tree是一个基于Vue.js2封装的组织结构树组件,支持自定义节点和收缩按钮,高自由度定制,有水平和垂直两种方向。

本插件借鉴了vue-org-tree实现数据到结构树的呈现。优化了对数据的更新以及一些操作的方式,添加了一些api。

作者系列视频课程:

Vue技术栈开发实战(26课时)

TypeScript完全解读(26课时)

进群和3500+前后端开发者交流学习

image

Install

npm install v-org-tree

Use

import OrgTree from 'v-org-tree'
import 'v-org-tree/dist/v-org-tree.css'
Vue.use(OrgTree)

Develop

npm install
npm run serve

Props

prop | descripton | type | default ------------------|------------------------------|:----------------------:|--------------------- data | 传入的树状数据 | Object | - horizontal | 是否垂直 | Boolean | false props | 用来指明数据中几个重要字段的命名 | Object | { id: 'id', label: 'label', children: 'children', expand: 'expand' } label-width | 节点的宽度,不设则随文字宽度自适应| String | Number | 'auto' collapsable | 是否可收缩 | Boolean | true node-render | 渲染节点的render函数 | Function | - button-render | 渲染收缩按钮的render函数 | Function | - label-class-name | 节点自定义类名,可以是函数,参数是当前节点数据对象| Function | String | - expandAll | 是否展开所有节点 | Boolean | false

Events

event | descripton | arguments ------------------|-----------------------------|------------------------------ on-expand | 当任一节点收缩状态改变时触发 | data(当前节点数据), status(当前节点是否展开) on-node-click | 点击节点时触发 | event(鼠标事件对象), data(当前节点数据), expand(是一个方法,如果点击该节点需要收缩,需要调用次方法)