Skip to content

mikemenaker/vue-json-tree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue-json-tree

Vue.js JSON tree viewer component

GitHub release license

Demo:

https://jsfiddle.net/mikemenaker/8zxwavrk/

Installation

With npm:

npm i v-json-tree --save

With a CDN:

<!-- In <body>, after Vue import -->
<script type="text/javascript" src="https://unpkg.com/v-json-tree/dist/vJsonTree.umd.js"></script>

Usage

With an ES6 bundler (via npm)

In your component file

import vJsonTree from "v-json-tree";

Then register:

components: {
    vJsonTree
  },

With a CDN

<script>
    Vue.component("v-json-tree", vJsonTree);

    new Vue({
        // ...
    })
</script>

Props:

  • data <Object/Array> - Data to format into tree
  • filterKey - String to filter data
  • fullMarkup - If full mark up is need (quotes and commas)

Slots:

  • 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

About

Vue.js JSON tree viewer component

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published