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