mirror of
https://github.com/Ssl1S/json-schema-editor-vue.git
synced 2025-12-30 09:47:54 +08:00
29 lines
463 B
Vue
29 lines
463 B
Vue
<template>
|
|
<div id="app">
|
|
<json-schema-editor :disabled="true" :value="tree" :root="true" style="width:600px"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App',
|
|
data() {
|
|
return {
|
|
tree:{
|
|
root: {
|
|
type: "object",
|
|
title: "title",
|
|
properties: {
|
|
field_1: {
|
|
type: "string"
|
|
},
|
|
},
|
|
required: ["field_1"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|