All Projects → spiritree → Vue Orgchart

spiritree / Vue Orgchart

Licence: mit
🌿 Vue.js wrapper for OrgChart.js

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Vue Orgchart

Vue Chartjs
📊 Vue.js wrapper for Chart.js
Stars: ✭ 4,554 (+2626.95%)
Mutual labels:  chart, vuejs2
Vue Kotlin
Libraries and tools supporting the use of Vue.js in Kotlin.
Stars: ✭ 162 (-2.99%)
Mutual labels:  vuejs2
Vue Ba
vue 百度统计埋点插件
Stars: ✭ 155 (-7.19%)
Mutual labels:  vuejs2
Rings
A simple chart for Android with three indicators and one more to indicate overall summary. They get highlighted if you click on the ring or text.
Stars: ✭ 160 (-4.19%)
Mutual labels:  chart
Vs
Vue Visualisation Package using d3.js and leaflet.
Stars: ✭ 157 (-5.99%)
Mutual labels:  vuejs2
Vue Notifyjs
Minimalist 1kb Notification component
Stars: ✭ 160 (-4.19%)
Mutual labels:  vuejs2
Vue Admin Manager
整合 vue,element,echarts,video,bootstrap(AdminLTE),admin等,搭建的后台管理系统
Stars: ✭ 153 (-8.38%)
Mutual labels:  vuejs2
Vuejs Sound Player
▶️ 🎹 🎵 HTML5 <audio> tag sound player UI for Vue.js - supports single, loop, pause/stop modes etc
Stars: ✭ 164 (-1.8%)
Mutual labels:  vuejs2
Vue Supply
Create resources that can automatically be activated and deactivated when used (like subscriptions)
Stars: ✭ 162 (-2.99%)
Mutual labels:  vuejs2
Vue Chimera
VueJS reactive RESTful API
Stars: ✭ 160 (-4.19%)
Mutual labels:  vuejs2
Vuetify Todo Pwa
✔️ A simple Todo PWA built with Vue CLI 3 + Vuex + Vuetify.
Stars: ✭ 160 (-4.19%)
Mutual labels:  vuejs2
Pendulum
A simple markdown editor for static files (Hugo, Nexo, Jekyll, MkDocs, ...)
Stars: ✭ 157 (-5.99%)
Mutual labels:  vuejs2
Github Ranking
🔍GitHub不同语言热门项目排行,Vue.js做页面展示
Stars: ✭ 160 (-4.19%)
Mutual labels:  vuejs2
Vue Ui For Pc
基于Vue2.x的一套PC端UI组件,包括了Carousel 跑马灯、Cascader 级联、Checkbox 多选框、Collapse 折叠面板、DatePicker 日期选择、Dialog 对话框、Form 表单、Input 输入框、InputNumber 数字输入框、Layer 弹窗层、Loading 加载、Menu 菜单、Page 分页、Progress 进度条、Radio 单选框、SelectDropDown 仿select、Switch 开关、Table 表格、Tabs 标签页、Textarea 文本框、Tooltip 文字提示、BackTop 返回顶部、steps 步骤条、Transfer 穿梭框、Tree 树形、Upload 文件上传、Lazy 图片懒加载、Loading 加载、Pagination 分页等等
Stars: ✭ 156 (-6.59%)
Mutual labels:  vuejs2
Glue
Configure Vue.js components using ClojureScript, manage global state using Atoms.
Stars: ✭ 164 (-1.8%)
Mutual labels:  vuejs2
V Tooltip
💬 Easy tooltips, popovers, dropdown for Vue
Stars: ✭ 2,109 (+1162.87%)
Mutual labels:  vuejs2
Vue Codemirror
⌨️ @codemirror component for @vuejs
Stars: ✭ 2,115 (+1166.47%)
Mutual labels:  vuejs2
Vue Info Card
Simple and beautiful card component with an elegant spark line, for VueJS.
Stars: ✭ 159 (-4.79%)
Mutual labels:  vuejs2
Webpack2
基于webpack2和vue.js2构建饿了么多页面应用 🌹
Stars: ✭ 165 (-1.2%)
Mutual labels:  vuejs2
Vue Barcode
Barcode generator for Vue.js
Stars: ✭ 164 (-1.8%)
Mutual labels:  vuejs2

vue-orgchart logo

A Vue wrapper for OrgChart.js.

Travis Status npm

Intro

  • First of all, thanks a lot for dabeng's great work -- OrgChart.js
  • If you prefer the Vue.js Wrapper for Orgchart.js,you could try my project

Links

Feature

  • Support import and export JSON
  • Supports exporting chart as a picture
  • draggable Orgchart
  • Editable Orgchart

...

Install

npm install vue-orgchart -S

Quick Start

In main.js

import 'vue-orgchart/dist/style.min.css'

In *.vue

<template>
  <div>
    <vo-basic :data="chartData"></vo-basic>
  </div>
</template>

<script>
import { VoBasic } from 'vue-orgchart'
export default {
  components: { VoBasic }
  created () {
    this.chartData = {
      name: 'JavaScript',
        children: [
          { name: 'Angular' },
          {
            name: 'React',
            children: [{ name: 'Preact' }]
          },
          {
            name: 'Vue',
            children: [{ name: 'Moon' }]
          }
        ]
    }
}
</script>

Development

# install dependencies
npm install

# serve with hot reload at localhost:8999
npm run dev

# unit test
npm run test

# build by rollup
npm run rollup

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].