This repository has been archived on 2024-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
simple-json-view/src/components/JsonSchema.vue
2023-07-23 12:27:40 +08:00

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>