gitextract_4td3omsd/ ├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── build/ │ ├── rollup.config.js │ └── webpack.config.js ├── dist/ │ ├── style.css │ ├── vue-orgchart.common.js │ ├── vue-orgchart.esm.js │ └── vue-orgchart.js ├── docs/ │ ├── .nojekyll │ ├── README.md │ ├── _coverpage.md │ ├── _navbar.md │ ├── _sidebar.md │ ├── basic.md │ ├── drag.md │ ├── edit.md │ ├── exportpic.md │ ├── index.html │ ├── panzoom.md │ ├── props.md │ ├── quickstart.md │ ├── style.css │ └── zh-cn/ │ ├── README.md │ ├── _navbar.md │ ├── _sidebar.md │ ├── basic.md │ ├── drag.md │ ├── edit.md │ ├── exportpic.md │ ├── panzoom.md │ ├── props.md │ └── quickstart.md ├── examples/ │ ├── Ajax.vue │ ├── App.vue │ ├── data/ │ │ ├── basic.js │ │ ├── edit.js │ │ └── index.js │ ├── index.html │ ├── main.js │ └── store/ │ ├── index.js │ └── service.js ├── package.json ├── src/ │ ├── components/ │ │ ├── VoBasic.vue │ │ └── VoEdit.vue │ ├── index.js │ └── lib/ │ ├── lodash.js │ ├── orgchart.js │ └── utils.js └── test/ ├── index.js ├── karma.conf.js └── load/ └── webpack/ ├── basic/ │ ├── App.vue │ ├── index.js │ └── webpack.config.js ├── edit/ │ ├── App.vue │ ├── index.js │ └── webpack.config.js └── index.html