You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
604 B

<template>
<div class="main">
<el-card class="box-card">
<template #header>
<div class="card-header">
<span>使用文档</span>
</div>
</template>
<div class="info">
请先参考<a href="https://www.api2gpt.com/helper" target="_blank">api2gpt 文档</a>
</div>
</el-card>
</div>
</template>
<script setup name="doc">
</script>
<style scoped lang="scss">
.main {
padding: 20px;
}
.info {
font-size: 14px;
color: #606266;
}
</style>