🌐
GitHub
github.com › bestkolobok › vue3-jsoneditor
GitHub - bestkolobok/vue3-jsoneditor · GitHub
<template> <json-editor height="400" mode="text" v-model="jsonText" /> </template> <script setup lang="ts"> import {ref} from 'vue'; const jsonData = ref({ array: [1, 2, 3], boolean: true, Null: null, number: 123, seconds: 0, object: {a: 'b', c: 'd'}, string: 'Hello World', }); const jsonText = ref('{"array": [1, 2, 3]}'); const queryLanguages = ref(['javascript', 'lodash', 'jmespath', 'jsonquery', 'jsonpath']); const onError = (error) => { // } const onFocus = () => { // } const onBlur = () => { // } </script> If you want use v-model (not v-model:json or v-model:text) then the type of data depends on the mode of the editor.
Starred by 81 users
Forked by 13 users
Languages   TypeScript 65.4% | Vue 26.3% | JavaScript 7.6%
🌐
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
🌐
Made with Vue.js
madewithvuejs.com › vue-3-json-editor
Vue 3 JSON Editor - JSON Editor Component - Made with Vue.js
December 17, 2025 - "vue3-jsoneditor is a JSON editor component with SSR support, expand / collapse functionality, different view modes, dark mode and more." 📊 Statistics · Github bestkolobok/vue3-jsoneditor 81 · ⬆️ Latest commit: 2 months ago · 📦️ ...
🌐
npm
npmjs.com › package › json-editor-vue3
json-editor-vue3 - npm
基于 jsoneditor 开发的vue3 json editor,支持全屏编辑,有完善的事件回调,可以在失去焦点时,对编辑器内容做校验。
      » npm install json-editor-vue3
    
Published   Apr 07, 2024
Version   1.1.1
Author   lq9328@126.com
🌐
GitHub
github.com › pratik227 › vue3-jsoneditor
GitHub - pratik227/vue3-jsoneditor: Vue3 JSON Editor
"Vue 3 JSON Editor" is a web-based application built with the Vue 3 JavaScript framework that allows users to easily create, view, and edit JSON data in a user-friendly interface.
Author   pratik227
🌐
GitHub
github.com › joaomede › vue3-json-editor
GitHub - joaomede/vue3-json-editor: A jsoneditor of vue 3 (next) - (fork vue-json-editor)
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 @mode-change: on editor mode change, return the mode string @has-error: on error ... <template> <div> <p>vue-json-editor</p> <Vue3JsonEditor v-model="json" :show-btns="true" :expandedOnStart="true" @json-change="onJsonChange" @mode-change="onModeChange" /> </div> </template> <script
Starred by 54 users
Forked by 31 users
Languages   JavaScript 98.3% | CSS 1.5% | JavaScript 98.3% | CSS 1.5%
🌐
GitHub
github.com › AnonX98 › vue3-json-edit
GitHub - AnonX98/vue3-json-edit: Visual JSON Editor built as an vue component. Provides a basic GUI
<template> <JsonEditor :options="{ confirmText: 'confirm', cancelText: 'cancel', }" v-model:objData="jsonData" /> </template> <script setup> import JsonEditor from "vue3-json-edit"; import "vue3-json-edit/dist/style.css"; import { ref } from "vue"; const jsonData = ref({ name: "may", age: null, address: [ "Panyu Shiqiao on Canton", "Tianhe", { city: "forida meta 11", }, ], others: { id: 1246, joinTime: "2017-08-20.
Author   AnonX98
🌐
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
🌐
CodePen
codepen.io › wckgo › pen › GRmgEax
Vue 3 JSON Editor Example
html, body { font: 13px/18px sans-serif; } select { min-width: 300px; } ! JS Options · Format JavaScript · View Compiled JavaScript · Analyze JavaScript · Maximize JavaScript Editor · Minimize JavaScript Editor · Fold All · Unfold All · import { Vue3JsonEditor } from "https://cdn.skypack.dev/vue3-json-editor"; const app = Vue.createApp({ template: "#demo-template", components: { Vue3JsonEditor }, setup() { function onJsonChange(value) { console.log("value:", value); } const json = Vue.ref({ name: "1" }) return { json, onJsonChange }; } }); app.mount("#el"); !
🌐
CodeSandbox
codesandbox.io › examples › package › vue3-json-editor
vue3-json-editor examples - CodeSandbox
primevue-autocomplete-field (forked)[Vue warn]: Invalid prop: type check failed for prop "field" mads14 · AboutA json editor of vue6,129Weekly Downloads · Latest version1.1.5 · LicenseISC · External Links · github.com/joaomede/vue3-json-editor#readme · github.com/joaomede/vue3-json-editor ·
Find elsewhere
🌐
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 ... $ yarn add json-editor-vue # NPM $ npm i json-editor-vue · This is a powerful JSON viewer & editor based on svelte-jsoneditor....
🌐
GitHub
github.com › cloydlau › json-editor-vue
GitHub - cloydlau/json-editor-vue: Vue 2/3 isomorphic JSON editor, viewer, formatter and validator. · GitHub
// ~/plugins/JsonEditorVue.client.js import JsonEditorVue from 'json-editor-vue' import Vue from 'vue' Vue.use(JsonEditorVue, { // global props & attrs (one-way data flow) }) <script setup> import { ref } from 'vue' const value = ref() </script> <template> <ClientOnly> <JsonEditorVue v-model="value" v-bind="{/* local props & attrs */}" /> </ClientOnly> </template> ... // nuxt.config.js export default { build: { // Vite ≥4 (Rollup ≥3) uses ES2020 as compiler target by default // Therefore Vite-≥4-built outputs should be transpiled in webpack 4 transpile: ['json-editor-vue'], extend(config) { // Getting webpack to recognize the `.mjs` file config.module.rules.push({ test: /\.mjs$/, include: /node_modules/, type: 'javascript/auto', }) }, }, }
Starred by 657 users
Forked by 31 users
Languages   TypeScript 90.3% | JavaScript 8.4% | HTML 1.3%
🌐
GitHub
github.com › jeevan-lal › vue3-json-viewer
GitHub - jeevan-lal/vue3-json-viewer: A modern, sleek Vue 3 JSON viewer component with tree and text modes
A modern, sleek Vue 3 component for viewing, editing, and manipulating JSON data with two view modes: Tree Mode and Text Mode.]
Author   jeevan-lal
🌐
jsDelivr
jsdelivr.com › package › npm › lite-json-editor
lite-json-editor (Vue 3)
November 21, 2022 - A free, fast, and reliable CDN for lite-json-editor. A lightweight json formatter/editor for Vue 3
Published   Oct 23, 2022
🌐
jsDelivr
jsdelivr.com › package › npm › vue3-json-edit
vue3-json-edit CDN by jsDelivr - A CDN for npm and GitHub
August 17, 2022 - A free, fast, and reliable CDN for vue3-json-edit. Visual JSON Editor built as an vue component. Provides a basic GUI
Published   Aug 03, 2022
🌐
Vue Script
vuescript.com › home › 7 best json viewer libraries for vue.js applications (2026 update)
7 Best JSON Viewer Libraries For Vue.js Applications (2026 Update) - Vue Script
December 29, 2025 - 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.
🌐
GitHub
github.com › bestkolobok › vue3-jsoneditor › releases
Releases · bestkolobok/vue3-jsoneditor
Releases · bestkolobok/vue3-jsoneditor · 20 Oct 12:40 · bestkolobok · v3.1.2 · 02cf61d · Compare · Filter · Loading · There was an error while loading. Please reload this page. View all tags · v.3.1.2 Latest · Latest · Fixed TypeError: can't access property "exports", ks is undefined #26 ·
Author   bestkolobok
🌐
GitHub
github.com › Kassaila › vue-json-editor
GitHub - Kassaila/vue-json-editor: Visual JSON editor - built as a vue component
JSON visual editor - built as a Vue.js component. Provides a basic GUI · Current package version work with Vue.js 2. Support for Vue.js 3 is not yet planned.
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%
🌐
jsDelivr
jsdelivr.com › package › npm › @dangojs › vue3-json-editor
@dangojs/vue3-json-editor CDN by jsDelivr - A CDN for npm and GitHub
September 20, 2022 - A free, fast, and reliable CDN for @dangojs/vue3-json-editor. A json editor of vue
Published   Sep 13, 2022