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 🙏

© 2025 – Pkg Stats / Ryan Hefner

orgchart-vue2

v1.0.5

Published

A Vue 2 component for displaying organizational charts

Readme

orgchart-vue2

A Vue 2 component for displaying organizational charts with drag and zoom capabilities.

Installation

npm install orgchart-vue2

Usage

Global Registration

import Vue from 'vue'
import OrgChartVue2 from 'orgchart-vue2'
import 'orgchart-vue2/dist/style.css'

Vue.use(OrgChartVue2)

new Vue({
  // ...
})

Component Registration

import { OrgChart, OrgNode } from 'orgchart-vue2'
import 'orgchart-vue2/dist/style.css'

export default {
  components: {
    OrgChart,
    OrgNode
  }
}

Template Usage

<template>
  <div>
    <org-chart :tree-data="orgData" />
  </div>
</template>

<script>
export default {
  data() {
    return {
      orgData: {
        id: 1,
        name: 'CEO',
        children: [
          {
            id: 2,
            name: 'CTO',
            children: [
              { id: 5, name: 'Developer 1' },
              { id: 6, name: 'Developer 2' }
            ]
          },
          {
            id: 3,
            name: 'CFO'
          },
          {
            id: 4,
            name: 'COO'
          }
        ]
      }
    }
  }
}
</script>

Features

  • Drag and Zoom: Navigate large organizational charts with mouse drag and zoom controls
  • Customizable Styling: Adjust colors, borders, and line styles
  • Responsive Design: Works well on different screen sizes
  • Vue 2 Compatible: Built for Vue 2 projects

Props

OrgChart

| Name | Type | Default | Description | |------|------|---------|-------------| | treeData | Object | null | The organizational chart data (required) | | lineColor | String | '#B0C7FE' | Color of the connecting lines | | lineWidth | String | '3px' | Width of the connecting lines | | minScale | Number | 0.1 | Minimum zoom scale | | maxScale | Number | 3 | Maximum zoom scale | | scaleStep | Number | 0.1 | Zoom increment/decrement step | | showZoomControls | Boolean | true | Show/hide zoom control buttons |

Interactions

  • Zoom: Use Ctrl + Mouse Wheel to zoom in/out
  • Drag: Click and drag to pan around the chart
  • Zoom Controls: Use the + and - buttons to zoom in/out
  • Reset View: Use the ↺ button to reset the view to default

Custom Node

You can customize the appearance of nodes using the default slot. Here's an example of how to create custom styled nodes:

<template>
    <div class="appbox">
        <OrgChart :treeData="orgData">
            <template #default="{ node }">
                <div :style="{ color: node.name === 'CEO' ? 'red' : 'blue' }" class="my_custom_style">
                    <div class="left_area">
                        <div class="avatar"></div>
                    </div>
                    <div class="right_area">
                        <div class="name">职位:{{ node.name }}</div>
                        <div class="item_desc" v-if="node.itemInfo && typeof node.itemInfo === 'object'">
                            <div>角色: {{ node.itemInfo.role }}</div>
                            <div>性别: {{ node.itemInfo.sex }}</div>
                            <div>年龄: {{ node.itemInfo.age }}</div>
                        </div>
                    </div>
                </div>
            </template>
        </OrgChart>
    </div>
</template>

<script>
import { OrgChart } from 'orgchart-vue2'
import 'orgchart-vue2/dist/style.css'
export default {
    components: { OrgChart },
    data() {
        return {
            orgData: {
                name: "CEO",
                itemInfo: {
                    role: "dev manager",
                    sex: "male",
                    age: 30,
                },
                children: [
                    {
                        name: "CTO",
                        itemInfo: {
                            role: "dev manager",
                            sex: "male",
                            age: 30,
                        },
                        children: [
                            {
                                name: "Dev Manager",
                                itemInfo: {
                                    role: "dev manager",
                                    sex: "male",
                                    age: 30,
                                },
                                children: [
                                    {
                                        name: "Dev 1",
                                        itemInfo: {
                                            role: "dev manager",
                                            sex: "male",
                                            age: 30,
                                        },
                                    },
                                ],
                            },
                            {
                                name: "Dev Manager",
                                itemInfo: {
                                    role: "dev manager",
                                    sex: "male",
                                    age: 30,
                                },
                                children: [
                                    {
                                        name: "Developer A",
                                        itemInfo: {
                                            role: "dev manager",
                                            sex: "male",
                                            age: 30,
                                        },
                                    },
                                    {
                                        name: "Developer B",
                                        itemInfo: {
                                            role: "dev manager",
                                            sex: "male",
                                            age: 30,
                                        },
                                    }
                                ],
                            },
                        ],
                    },
                    {
                        name: "CFO",
                        itemInfo: {
                            role: "dev manager",
                            sex: "male",
                            age: 30,
                        },
                        children: [
                            {
                                name: "Accountant",
                                itemInfo: {
                                    role: "dev manager",
                                    sex: "male",
                                    age: 30,
                                },
                            }
                        ],
                    },
                ],
            }
        }
    }
}
</script>

<style lang="scss" scoped>
.my_custom_style {
    display: flex;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4eaf5 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e1e8f0;
}

.my_custom_style:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border-color: #c9d8e9;
}

.left_area {
    width: 56px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    margin-right: 16px;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2 0%, #5b7bd7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
    position: relative;
}

.avatar::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2 0%, transparent 50%);
    opacity: 0.7;
    z-index: -1;
}

.right_area {
    flex: 1;
    min-width: 0;
}

.name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item_desc {
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid #4a90e2;
}

.item_desc div {
    margin: 4px 0;
    font-size: 14px;
    color: #4a5568;
    display: flex;
    align-items: center;
}

.item_desc div::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #4a90e2;
    margin-right: 8px;
}
</style>

image-20250819170137570

You can also use the OrgNode component to customize the node appearance:

<template>
  <org-chart :treeData="orgData" :customNode="true">
    <template #node="{ node }">
      <org-node :node="node" />
    </template>
  </org-chart>
</template>

License

MIT