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
2018-09-17 06:02:07 +02:00

27 lines
555 B
JavaScript

import Vue from 'vue';
import JsonViewer from '../';
import './css/ionicons.css';
new Vue({
el: '#app',
data() {
return {
jsonData: {
name: [
{key: 2},
{key: 'hello word'},
],
val: {
c: () = {},
b: 'a',
a: 'hello word',
asd2: 1,
asd: false,
foo: null
}
}
}
},
components: {JsonViewer}
})