mirror of
https://gitee.com/myxzgzs/boyue-vue-pro.git
synced 2025-08-11 09:52:45 +08:00
19 lines
364 B
Vue
19 lines
364 B
Vue
<template>
|
|
<div>
|
|
<doc-alert title="接口文档" url="https://doc.iocoder.cn/api-doc/" />
|
|
<i-frame :src="url" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import iFrame from "@/components/iFrame/index";
|
|
export default {
|
|
name: "Druid",
|
|
components: { iFrame },
|
|
data() {
|
|
return {
|
|
url: process.env.VUE_APP_BASE_API + "/doc.html"
|
|
};
|
|
},
|
|
};
|
|
</script>
|