Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arvidkahl/vue-json-tree-view
A JSON Tree View Component for Vue.js
https://github.com/arvidkahl/vue-json-tree-view
javascript javascript-library json-tree tree vue vue-json-tree vuejs vuejs2
Last synced: 5 days ago
JSON representation
A JSON Tree View Component for Vue.js
- Host: GitHub
- URL: https://github.com/arvidkahl/vue-json-tree-view
- Owner: fitzhavey
- License: mit
- Created: 2017-02-17T10:01:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-28T18:49:44.000Z (11 days ago)
- Last Synced: 2024-10-29T10:45:17.571Z (10 days ago)
- Topics: javascript, javascript-library, json-tree, tree, vue, vue-json-tree, vuejs, vuejs2
- Language: Vue
- Homepage: https://devblog.digimondo.io/building-a-json-tree-view-component-in-vue-js-from-scratch-in-six-steps-ce0c05c2fdd8#.dkwh4jo2m
- Size: 1.74 MB
- Stars: 480
- Watchers: 9
- Forks: 81
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-github-vue - vue-json-tree-view - Vue的JSON树视图 (UI组件)
- awesome - vue-json-tree-view - Vue的JSON树视图 (UI组件)
- awesome-vue - vue-json-tree-view - json-tree-view?style=social) - Vue的JSON树视图 (UI组件)
README
# Vue JSON Tree View
![a demonstration](https://raw.githubusercontent.com/arvidkahl/vue-json-tree-view/master/header.png)
## Demo and Blogpost
You can check out the [demo](https://jsfiddle.net/arvidkahl/kwo6vk9d/11/) on JSFiddle and read the Blogpost called [Building a JSON Tree View Component in Vue.js from Scratch in Six Steps](http://brianyang.com/building-a-json-tree-view-component-in-vue-js-from-scratch-in-six-steps) that lead to the creation of this library.
## Installation
Install the plugin with npm:
```shell
npm install --save vue-json-tree-view
```Then, in your Application JavaScript, add:
```javascript
import TreeView from "vue-json-tree-view"
Vue.use(TreeView)
```Done.
## Usage
Put the `tree-view` element into your HTML where you want the Tree View to appear.
```html
```## Props
#### `data`
The JSON to be displayed. Expects a valid JSON object.
#### `options`
The defaults are:
```
{
maxDepth: 4,
rootObjectKey: "root",
modifiable: false,
link: false,
limitRenderDepth: false
}
```
- maxDepth: The maximum number of levels of the JSON Tree that should be expanded by default. Expects an Integer from 0 to Infinity.
- rootObjectKey: the name of the Root Object, will default to `root`.
- modifiable: To modify the json value.
- link: URL strings will appear as clickable links (unless `modifiable="true"`).
- limitRenderDepth: maximum number of nodes that should be rendered (for very large JSONs)## Event
#### updated json data
If `modifiable` is true and you want to take the updated json data, you must register event handler as `v-on:change-data=...`. Only one argument is passed that is updated data - `data`.
```html
// in your vue code
...
methods: {
onChangeData: function(data) {
console.log(JSON.stringify(data))
}
},
...```
## Custom Styling
All leaves will have their type indicated as a CSS class, like `tree-view-item-value-string`. Supported types: String, Number, Function, Boolean and Null Values.
Keys can also be styled. For instance to make labels red:
```
.tree-view-item-key {
color: red;
}
```## Contributing
Contributions to this repo are very welcome as they are what has helped it become what it is today. Simply raise an issue with new ideas or submit a pull request.A github action automatically deploys changes when they are merged into the master branch.