Vue.js JSON tree viewer component
https://jsfiddle.net/mikemenaker/8zxwavrk/
npm i v-json-tree --save
<!-- In <body>, after Vue import -->
<script type="text/javascript" src="https://unpkg.com/v-json-tree/dist/vJsonTree.umd.js"></script>
In your component file
import vJsonTree from "v-json-tree";
Then register:
components: {
vJsonTree
},
<script>
Vue.component("v-json-tree", vJsonTree);
new Vue({
// ...
})
</script>
- data <Object/Array> - Data to format into tree
- filterKey - String to filter data
- fullMarkup - If full mark up is need (quotes and commas)
- hide - What should be used for the hide button
- expand - What should be used for the expand button
- more - What should be used for the elipsis when an object/array is hidden