2
0
mirror of https://github.com/tenrok/vue-json-viewer.git synced 2026-06-02 16:04:08 +03:00
Files
Eliott Vincent 207a2a7b8e Fix example
2021-08-16 17:19:51 +02:00

14 lines
198 B
JavaScript

import { createApp, h } from 'vue'
import JsonViewer from '../lib'
import App from './App.vue'
const app = createApp({
render() {
return h(App)
}
})
app.use(JsonViewer)
app.mount("#app")