yunnet / vue3-json-viewer

Simple JSON viewer component, for Vue.js 3.x

Home Page:https://vjv-doc-qiuquanwu.vercel.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vue3-json-viewer-plus

中文版

Simple and easy-to-use json content display component suitable for vue3 and vite. When developing with vue3+vite, I found that I needed to use the display json data component, and found that vue-json-viewer can only be compatible with vue2, so it took an hour to rewrite the adaptation of vue3. Original author: github

Install

Requires clipboard

$ npm install clipboard --save

Then install vue3-json-viewer-plus

$ npm install vue3-json-viewer-plus --save

RecentUpdate

  • dark theme support
  • Add click event for keyNode
  • Support RegExp types

Doc

document

Usage

main.js

import { createApp } from "vue";
import App from "./App.vue";
import JsonViewer from "vue3-json-viewer-plus";
// if you used v1.0.5 or latster ,you should add import "vue3-json-viewer-plus/dist/index.css"
import "vue3-json-viewer-plus/dist/index.css";
const app = createApp(App);
app.use(JsonViewer);
app.mount("#app");

App.vue

<template>
  <div class="box">
    <h4>普通</h4>
    <JsonViewer :value="jsonData" copyable boxed sort theme="light"  @onKeyClick="keyClick"/>
    <h4>暗黑</h4>
    <JsonViewer :value="jsonData" copyable boxed sort theme="dark"  @onKeyClick="keyClick"/>
  </div>
</template>

<script setup>
import {JsonViewer} from "vue3-json-viewer-plus"
// if you used v1.0.5 or latster ,you should add import "vue3-json-viewer-plus/dist/index.css"
import "vue3-json-viewer-plus/dist/index.css";
import { reactive, ref } from "vue";
let obj = {
  name: "qiu",//字符串
  age: 18,//数组
  isMan:false,//布尔值
  date:new Date(),
  fn:()=>{},
  arr:[1,2,5],
  reg:/ab+c/i
};
const jsonData = reactive(obj);
const keyClick = (keyName)=>{
  console.log(keyName,"被点击了")
}
</script>

<style>
.box{
  margin-top: 1rem;
}
</style>

explain In the basic modification section of vue3-json-viewer

  • Remove the front and back quotes when json-box displays strings

About

Simple JSON viewer component, for Vue.js 3.x

https://vjv-doc-qiuquanwu.vercel.app/

License:MIT License


Languages

Language:Vue 91.5%Language:JavaScript 8.5%