2
0
mirror of https://github.com/tenrok/vue-json-viewer.git synced 2026-06-08 17:22:32 +03:00
Files
vue-json-viewer/examples/app.js
T
2017-10-18 14:53:42 +08:00

24 lines
465 B
JavaScript

import Vue from 'vue';
import JsonViewer from '../';
import './css/ionicons.css';
new Vue({
el: '#app',
render: h => h(JsonViewer, {
domProps: {
id: '123'
},
props: {
value: {
name: [
{name: 2},
],
val: {
a: 1
}
},
showCopy: true,
iconPrefix: 'ion'
}
})
})