Vue implementation of JSONEditor
npm install vue-jsoneditor   
> Vue implementation of JSONEditor
``bash`npm
npm install vue-jsoneditor
`javascript
import Vue from 'vue';
import VJsoneditor from 'vue-jsoneditor';
import App from './App';
Vue.config.productionTip = false;
Vue.use(VJsoneditor);
/ eslint-disable no-new /
new Vue({
el: '#app',
template: '
components: { App },
});
`
`javascript
import VJsoneditor from 'vue-jsoneditor';
export default {
name: 'app',
components: {
VJsoneditor,
},
data() {
return {
json: {
sucess: true,
},
};
},
methods: {
jsonChanged(value) {
console.log(JSON.stringify(value));
},
},
};
`
`html`
Don't forget to include jsoneditor API:
`html``