vuejs展示json的组件,适配vue3
npm install vue3-json-viewerSimple 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
Requires clipboard
```
$ npm install clipboard --save
Then install vue3-json-viewer
``
$ npm install vue3-json-viewer --save
main.js
`js`
import { createApp } from "vue";
import App from "./App.vue";
import JsonViewer from "vue3-json-viewer";
// if you used v1.0.5 or latster ,you should add import "vue3-json-viewer/dist/index.css"
import "vue3-json-viewer/dist/vue3-json-viewer.css";
const app = createApp(App);
app.use(JsonViewer);
app.mount("#app");
App.vue
` html
Light
Dark
``
