Coder Social home page Coder Social logo

boukadam / vue-json-pretty Goto Github PK

View Code? Open in Web Editor NEW

This project forked from leezng/vue-json-pretty

0.0 0.0 0.0 2.2 MB

A JSON tree view component that is easy to use and also supports data selection.

Home Page: https://leezng.github.io/vue-json-pretty

License: MIT License

JavaScript 61.60% TypeScript 21.70% HTML 1.60% Vue 11.34% Less 3.76%

vue-json-pretty's Introduction

A Vue component for rendering JSON data as a tree structure.

Now it supports Vue3 at least. If you still use Vue2, see 1.x.

Build Status npm package GitHub license Sizes NPM downloads Issues

English | 简体中文

Features

  • As a JSON Formatter.
  • Written in TypeScript, support d.ts.
  • Support get item data from JSON.
  • Support big data.
  • Support editable.

Environment Support

  • Modern browsers, Electron and Internet Explorer 11 (with polyfills)
  • Server-side Rendering
IE / Edge
IE / Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
Electron
Electron
IE11, Edge last 10 versions last 10 versions last 10 versions last 2 versions

Using NPM or Yarn

$ npm install vue-json-pretty --save
$ yarn add vue-json-pretty

Use Vue2

$ npm install vue-json-pretty@v1-latest --save

Usage

The CSS file is included separately and needs to be imported manually. You can either import CSS globally in your app (if supported by your framework) or directly from the component.

<template>
  <div>
    <vue-json-pretty :data="{ key: 'value' }" />
  </div>
</template>

<script>
import VueJsonPretty from 'vue-json-pretty';
import 'vue-json-pretty/lib/styles.css';

export default {
  components: {
    VueJsonPretty,
  },
};
</script>

Use Nuxt.js

  1. In plugins/vue-json-pretty.js
import Vue from 'vue'
import VueJsonPretty from 'vue-json-pretty'

Vue.component("vue-json-pretty", VueJsonPretty)
  1. In nuxt.config.js
css: [
  'vue-json-pretty/lib/styles.css'
],
plugins: [
  '@/plugins/vue-json-pretty'
],

Props

Property Description Type Default
data(v-model) JSON data, support v-model when use editable JSON object -
collapsedNodeLength Objects or arrays which length is greater than this threshold will be collapsed number -
deep Paths greater than this depth will be collapsed number -
showLength Show the length when collapsed boolean false
showLine Show the line boolean true
showLineNumber Show the line number boolean false
showIcon Show the icon boolean false
showDoubleQuotes Show doublequotes on key boolean true
virtual Use virtual scroll boolean false
height The height of list when using virtual number 400
itemHeight The height of node when using virtual number 20
selectedValue(v-model) Selected data path string, array -
rootPath Root data path string root
nodeSelectable Defines whether a node supports selection (node) => boolean -
selectableType Support path select, default none multiple | single -
showSelectController Show the select controller boolean false
selectOnClickNode Trigger select when click node boolean true
highlightSelectedNode Support highlighting selected nodes boolean true
collapsedOnClickBrackets Support click brackets to collapse boolean true
renderNodeKey render node key, or use slot #renderNodeKey ({ node, defaultKey }) => vNode -
renderNodeValue render node value, or use slot #renderNodeValue ({ node, defaultValue }) => vNode -
editable Support editable boolean false
editableTrigger Trigger click | dblclick click

Events

Event Name Description Parameters
nodeClick triggers when click node (node: NodeData)
bracketsClick triggers when click brackets (collapsed: boolean)
iconClick triggers when click icon (collapsed: boolean)
selectedChange triggers when the selected value changed (newVal, oldVal)

Slots

Slot Name Description Parameters
renderNodeKey render node key { node, defaultKey }
renderNodeValue render node value { node, defaultValue }

Contributors

vue-json-pretty's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.