1.4.4 • Published 2 years ago

@wedevlt/v-jsoneditor v1.4.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

npm version Build Status license license

v-jsoneditor

Vue JSONEditor

Try the demo

https://yansenlei.github.io/VJsoneditor/

demo

Installation

npm install v-jsoneditor

Using

Import globally

import Vue from 'vue'
import VJsoneditor from 'v-jsoneditor'

Vue.use(VJsoneditor)

Import

import VJsoneditor from 'v-jsoneditor'

export default {
    name: 'app',
    components: {
        VJsoneditor
    },
    data() {
        return {
            json: {
                "hello": "vue"
            }
        }
    },
    methods: {
        onError() {
            console.log('error')
        }
    }
}

Browser

<script src='https://unpkg.com/vue@latest'></script>
<script src="./dist/v-jsoneditor.min.js"></script>

Use in template

<v-jsoneditor v-model="json" :options="options" :plus="false" height="400px" @error="onError">

Options

NameDescriptiontypedefault
optionsJsoneditor params, You can look at the detailed configurationObject{ mode: 'code' }
value(v-model)Object valueObject{ }
plusWhether full screen switching is addedBooleantrue
heightDefault heightString-

Events

NameDescription
errorError callback

Build Setup

# install dependencies
npm install

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

# build for production with minification
npm run build