23 lines
416 B
Vue
23 lines
416 B
Vue
<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> |