1.1.5 • Published 6 years ago

lightoj-json-editor v1.1.5

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

Vue-Json-Edit

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

DEMO

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> 
1.1.5

6 years ago