🌐
npm
npmjs.com › package › json-editor-vue
json-editor-vue - npm
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> </head> <body> <div id="app"> <json-editor-vue v-model="value"></json-editor-vue> </div> <script type="importmap"> { "imports": { "vue": "https://cdn.jsdelivr.net/npm/vue/dist/vue.esm-browser.prod.js", "vue-demi": "https://cdn.jsdelivr.net/npm/vue-demi/lib/v3/index.mjs", "vanilla-jsoneditor": "https://cdn.jsdelivr.net/npm/vanilla-jsoneditor", "json-editor-vue": "https://cdn.jsdelivr.net/npm/json-editor-vue@0.18/dist/json-editor-vue.mjs" } } </script> <script type="module"> import { createApp, ref } from 'vue' import JsonEditorVue from 'json-editor-vue' createApp({ setup: () => ({ value: ref(), }), }) .use(JsonEditorVue) .mount('#app') </script> </body> </html>
      » npm install json-editor-vue
    
Published   Mar 05, 2025
Version   0.18.1
Author   Cloyd Lau
🌐
GitHub
github.com › cloydlau › json-editor-vue
GitHub - cloydlau/json-editor-vue: Vue 2/3 isomorphic JSON editor, viewer, formatter and validator. · GitHub
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> </head> <body> <div id="app"> <json-editor-vue v-model="value"></json-editor-vue> </div> <script type="importmap"> { "imports": { "vue": "https://cdn.jsdelivr.net/npm/vue/dist/vue.esm-browser.prod.js", "vue-demi": "https://cdn.jsdelivr.net/npm/vue-demi/lib/v3/index.mjs", "vanilla-jsoneditor": "https://cdn.jsdelivr.net/npm/vanilla-jsoneditor", "json-editor-vue": "https://cdn.jsdelivr.net/npm/json-editor-vue@0.18/dist/json-editor-vue.mjs" } } </script> <script type="module"> import { createApp, ref } from 'vue' import JsonEditorVue from 'json-editor-vue' createApp({ setup: () => ({ value: ref(), }), }) .use(JsonEditorVue) .mount('#app') </script> </body> </html>
Starred by 657 users
Forked by 31 users
Languages   TypeScript 90.3% | JavaScript 8.4% | HTML 1.3%
🌐
GitHub
github.com › dirkliu › vue-json-editor
GitHub - dirkliu/vue-json-editor: A jsoneditor of vue
A jsoneditor of vue. Contribute to dirkliu/vue-json-editor development by creating an account on GitHub.
Starred by 229 users
Forked by 92 users
Languages   JavaScript 98.4% | CSS 1.3% | JavaScript 98.4% | CSS 1.3%
🌐
Js
jsonui.js.org
vue-json-ui-editor
We cannot provide a description for this page right now
🌐
GitHub
github.com › Kassaila › vue-json-editor
GitHub - Kassaila/vue-json-editor: Visual JSON editor - built as a vue component
Current package version work with Vue.js 2. Support for Vue.js 3 is not yet planned. ... <template> <json-editor :data-input="dataInput" @data-output="(data) => (dataOutput = data)"> </json-editor> </template> <script> import JsonEditor from '@kassaila/vue-json-editor'; export default { ...
Starred by 11 users
Forked by 3 users
Languages   Vue 46.9% | JavaScript 34.3% | SCSS 16.4% | HTML 2.4% | Vue 46.9% | JavaScript 34.3% | SCSS 16.4% | HTML 2.4%
🌐
GitHub
github.com › yourtion › vue-json-ui-editor
GitHub - yourtion/vue-json-ui-editor: Edit JSON in UI form with JSON Schema and Vue.js
Edit JSON in UI form with JSON Schema and Vue.js. Contribute to yourtion/vue-json-ui-editor development by creating an account on GitHub.
Starred by 527 users
Forked by 92 users
Languages   TypeScript 76.4% | Vue 17.6% | JavaScript 5.8% | HTML 0.2% | TypeScript 76.4% | Vue 17.6% | JavaScript 5.8% | HTML 0.2%
🌐
Vue Script
vuescript.com › home › other › powerful json viewer & editor for vue 3/2
Powerful JSON Viewer & Editor For Vue 3/2 - Vue Script
July 29, 2025 - Powerful JSON Viewer & Editor For Vue 3/2 · cloydlau First listed on April 13, 2024 · Live Demo Download Source Code · # Yarn $ yarn add json-editor-vue # NPM $ npm i json-editor-vue · This is a powerful JSON viewer & editor based on svelte-jsoneditor. With this library, you will be able to view, edit, insert, remove, duplicate, sort, filter, and transform JSON data in plain text or as a tree.
🌐
npm
npmjs.com › package › vue-json-editor
vue-json-editor - npm
A json editor of vue. Latest version: 1.4.3, last published: 5 years ago. Start using vue-json-editor in your project by running `npm i vue-json-editor`. There are 137 other projects in the npm registry using vue-json-editor.
      » npm install vue-json-editor
    
Published   Nov 13, 2020
Version   1.4.3
Author   liuqi41
🌐
GitHub
github.com › cloydlau › json-editor-vue › releases
Releases · cloydlau/json-editor-vue
Vue 2/3 isomorphic JSON editor, viewer, formatter and validator. - Releases · cloydlau/json-editor-vue
Author   cloydlau
🌐
GitHub
github.com › bestkolobok › vue3-jsoneditor
GitHub - bestkolobok/vue3-jsoneditor
Contribute to bestkolobok/vue3-jsoneditor development by creating an account on GitHub.
Starred by 80 users
Forked by 13 users
Languages   TypeScript 70.8% | Vue 28.4% | TypeScript 70.8% | Vue 28.4%
Find elsewhere
🌐
GitHub
github.com › jinkin1995 › vue-json-edit
GitHub - jinkin1995/vue-json-edit: Visual JSON editor built as an vue component. Provides a basic GUI
Visual JSON editor built as an vue component. Provides a basic GUI - jinkin1995/vue-json-edit
Starred by 287 users
Forked by 87 users
Languages   Vue 33.1% | Less 27.0% | HTML 19.2% | CSS 16.6% | JavaScript 4.1% | Vue 33.1% | Less 27.0% | HTML 19.2% | CSS 16.6% | JavaScript 4.1%
🌐
GitHub
github.com › yansenlei › VJsoneditor
GitHub - yansenlei/VJsoneditor: :large_blue_diamond: vue use jsoneditor
import Vue from 'vue' import VJsoneditor from 'v-jsoneditor' Vue.use(VJsoneditor) import VJsoneditor from 'v-jsoneditor' export default { name: 'app', components: { VJsoneditor }, data() { return { json: { "hello": "vue" } } }, methods: { onError() { console.log('error') } } } <script src='https://unpkg.com/vue@latest'></script> <script src="./dist/v-jsoneditor.min.js"></script> <v-jsoneditor v-model="json" :options="options" :plus="false" height="400px" @error="onError"> Name ·
Starred by 184 users
Forked by 45 users
Languages   Vue 43.4% | JavaScript 29.1% | HTML 27.5% | Vue 43.4% | JavaScript 29.1% | HTML 27.5%
🌐
CodeSandbox
codesandbox.io › examples › package › vue-json-editor
vue-json-editor examples - CodeSandbox
AboutA json editor of vue4,267Weekly Downloads · Latest version1.4.3 · LicenseISC · External Links · github.com/dirkliu/vue-json-editor#readme · github.com/dirkliu/vue-json-editor · github.com/dirkliu/vue-json-editor/issues ·
🌐
Vue.js Examples
vuejsexamples.com › json-editor-with-vue-js
JSON Editor with Vue.js
May 6, 2019 - <script src='https://unpkg.com/vue@latest'></script> <script src="./dist/v-jsoneditor.min.js"></script> <v-jsoneditor v-model="json" :options="options" :plus="false" :height="400px" @error="onError"> # install dependencies npm install # serve with hot reload at localhost:8080 npm run dev # build for production with minification npm run build ... ALIS Editor is a rich text editor based on tree structure by JSON.
🌐
jsDelivr
jsdelivr.com › package › npm › @kassaila › vue-json-editor
@kassaila/vue-json-editor CDN by jsDelivr - A CDN for npm and GitHub
January 10, 2021 - A free, fast, and reliable CDN for @kassaila/vue-json-editor. JSON visual editor - built as a Vue.js component
Published   Dec 07, 2020
🌐
CodeSandbox
codesandbox.io › s › json-editor-vue-3bd8w0
json-editor-vue - CodeSandbox
June 22, 2022 - json-editor-vue by pakerchang using json-editor-vue, vue
Published   Jun 22, 2022
Author   pakerchang
🌐
jsDelivr
jsdelivr.com › package › npm › vue-json-editor
vue-json-editor CDN by jsDelivr - A CDN for npm and GitHub
November 13, 2020 - A free, fast, and reliable CDN for vue-json-editor. A json editor of vue
Published   Apr 18, 2017
🌐
Vue.js Feed
vuejsfeed.com › blog › a-schema-aware-json-editor-developed-with-vue-js
A schema-aware JSON Editor developed with Vue.js - Vue.js Feed
Download JSON document as a JSON file. Load JSON document from a JSON schema file. The project's code is available on GitHub under a GNU General Public License v3.0. ... The latest Vue.js news, tutorials, plugins, and more, in your inbox every week!
🌐
npm
npmjs.com › package › vue3-json-editor
vue3-json-editor - npm
A json editor of vue. Latest version: 1.1.5, last published: 4 years ago. Start using vue3-json-editor in your project by running `npm i vue3-json-editor`. There are 11 other projects in the npm registry using vue3-json-editor.
      » npm install vue3-json-editor
    
Published   Mar 16, 2022
Version   1.1.5
Author   liuqi41
🌐
Npm
npm.io › package › vue-json-editor
Vue-json-editor NPM | npm.io
Weekly downloads · 2,293 · License · ISC · Repository · github · Last release · 5 years ago · Share package · A json editor of vue.js ·