Socket
Socket
Sign inDemoInstall

vue-json-view-editor

Package Overview
Dependencies
16
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vue-json-view-editor

> A vue component that format json


Version published
Weekly downloads
7
Maintainers
1
Install size
7.42 MB
Created
Weekly downloads
 

Readme

Source

vue-json-view-editor

A vue component that format json

Install

npm i -S vue-json-view-editor

Example

example

Usage

// main.js
// ...
import JsonViewEditor from 'vue-json-view-editor';
Vue.use(JsonViewEditor);
// view.vue
export default {
  name: 'View',

  data () {
    return {
      testSrc: {
        dq: 'dgv',
        gbiowarr: [
          1,
          2.42,
          'btiuer',
          true,
          false,
          null,
          undefined,
          NaN
        ],
        inerr: {
          foiwe: {
            goriej: 'frj',
            vvwi: false,
            nupoy: {
              gnpoxdv: 321,
              tgoisnbv3: true,
              lasgtr: null
            },
            ieonv: new Date()
          }
        }
      },
      viewExpanded: true
    }
  },

  async mounted () {
    // test
    setTimeout(() => {
      this.testSrc = {
        ...this.testSrc,
        bvs: {
          gtis: 'gtrj'
        }
      }
    }, 2000)
  },

  methods: {
    addJsonRow (data) {

    },

    deleteJsonRow (data) {

    },

    editJsonRow (data) {

    }
  },
}
<!-- view.vue -->
<template>
  <json-view-editor
    :src="testSrc"
    :viewExpanded="viewExpanded"
    :indentWidth="4"
    :add="addJsonRow"
    :delete="deleteJsonRow"
    :edit="editJsonRow">
  </json-view-editor>
</template>

JsonViewEditor Attributes

参数说明类型可选值默认值
src数据源Object, Array, Number, String, Boolean, Date, null, undefined, NaN-{}
viewExpanded是否展开视图Boolean-true
collapseString省略这个长度以外的字符,-1表示不省略Number--1
indentWidth缩进的长度Number-4
add添加属性后的回调Function/Boolean-false
delete删除属性后的回调Function/Boolean-false
edit修改属性后的回调Function/Boolean-false

RoadMap

  1. 完善添加、修改、删除功能

Preview Demo

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run demo

Build Setup

# install dependencies
npm install

# build for production with minification
npm run build

# build for production and view the bundle analyzer report
npm run build --report

使用方法

具体请查看 /demo/App.vue

Keywords

FAQs

Last updated on 20 Jun 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc