update 新增树查询页面的doc

This commit is contained in:
2021-04-29 11:21:07 +08:00
parent ebd7d303dd
commit 88b7b3d4d2
11 changed files with 572 additions and 62 deletions

View File

@@ -2,7 +2,7 @@
<section>
<p>
当前版本
<a-tag>1.0</a-tag>
<a-tag>1.1</a-tag>
</p>
<Highlight :code="codes['/seed/query.vue']" language="html" />
</section>

View File

@@ -0,0 +1,23 @@
<template>
<section>
<p>
当前版本
<a-tag>1.0</a-tag>
</p>
<Highlight :code="codes['/seed/treeLayout.vue']" language="html" />
</section>
</template>
<script>
import Highlight from '../highlight';
export default {
components: {
Highlight,
},
props: {
codes: {
type: Object,
},
},
};
</script>