update 完善了部分开发文档

This commit is contained in:
2021-04-28 17:08:06 +08:00
parent aac183749b
commit 8c429bcde6
23 changed files with 633 additions and 50 deletions

View File

@@ -0,0 +1,23 @@
<template>
<section>
<p>
维护接口地址在
<a-tag class="mr-none" color="orange">@/src/common/api/requests</a-tag>
</p>
<Highlight :code="codes['/api/setting.js']" language="javascript" />
</section>
</template>
<script>
import Highlight from '../highlight';
export default {
components: {
Highlight,
},
props: {
codes: {
type: Object,
},
},
};
</script>