yelingfeng / vue3-json-editor

A jsoneditor of vue 3 (next) - (fork vue-json-editor)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vue3-json-editor

(fork vue-json-editor - credits original: https://github.com/dirkliu/vue-json-editor)

A json editor of vue.js

Support

  • Module ESM: Yes
  • Unpkg: Yes
  • CommonJS: Yes

How to run DEMO

# install
npm install

# for vue 3.x app
npm run dev

# for vite 3.x
npm run dev_vite

Component properties

v-model:bind the [json object]
:show-btns: boolean, show the save button, default: true
:expandedOnStart: boolean, expand the JSON editor on start for the modes 'tree', 'view', and 'form', default: false
:mode: string, default: tree
:lang: string, default: en
@json-change: on json changed
@json-save: on json save
@has-error: on error

How to use

1. Install using npm

npm install vue3-json-editor --save

2. Use vue-json-editor in the vue component

<template>
  <div>
    <p>vue-json-editor</p>
    <vue-json-editor
      v-model="json"
      :show-btns="true"
      :expandedOnStart="true
      @json-change="onJsonChange"
    />
  </div>
</template>

<script>
import { defineComponent, reactive, toRefs } from 'vue'
import { Vue3JsonEditor } from 'vue3-json-editor'

export default defineComponent({
  components: {
    Vue3JsonEditor
  },
  setup () {
    function onJsonChange (value) {
      console.log('value:', value)
    }

    const state = reactive({
      json: {}
    })

    return {
      ...toRefs(state),
      onJsonChange
    }
  }
})
</script>

About

A jsoneditor of vue 3 (next) - (fork vue-json-editor)

License:ISC License


Languages

Language:JavaScript 98.2%Language:CSS 1.3%Language:TypeScript 0.2%Language:Vue 0.1%Language:HTML 0.1%