lightoj-json-editor

1.1.5 • Public • Published

Vue-Json-Edit

visual JSON editor built as an vue component. Provides a basic GUI

Getting Started

npm install vue-json-edit --save

Usage

//import it in your project At your entry point

import vue from 'vue'
import JsonEditor from 'vue-json-edit'
  
Vue.use(JsonEditor)
  

Example

Single file component

<template>
    <JsonEditor :objData="jsonData" v-model="jsonData" ></JsonEditor>
</template>
<script>
export default {
    ...
    data: function() {
        return {
            jsonData: {
                name: 'mike',
                age: 22,
                phone: '18552129932',
                address: ['AAA C1', 'BBB C2']
            }
        }
    }
}
</script> 

Readme

Keywords

Package Sidebar

Install

npm i lightoj-json-editor

Weekly Downloads

4

Version

1.1.5

License

MIT

Unpacked Size

364 kB

Total Files

25

Last publish

Collaborators

  • zhangzisu