26 lines
420 B
Vue
26 lines
420 B
Vue
<template>
|
|
<json-schema-editor :value="tree"
|
|
lang="zh_CN"
|
|
custom="true"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "JsonSchema",
|
|
data() {
|
|
return {
|
|
tree:
|
|
{
|
|
root: {
|
|
type: "object"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |