Files
zsxt_nbzs_h5/Web/src/pages/system/doc/seed/query.vue
自带大佬气场 03a88be5ce update
重新封装了表单窗体,支持关闭时变更检测;
优化模版代码及内部注释,更快速开发;
开发文档中的代码片段可以复制成用户片段模版
2021-04-30 21:58:31 +08:00

23 lines
359 B
Vue

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