Files
OCS_service/app/pages/docs.vue
T
2026-05-22 16:27:35 +08:00

13 lines
281 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!-- app/pages/docs.vue - API 文档页替代旧 Flask /docs 模板 -->
<script lang="ts" setup>
import ApiDocsContent from "@/components/docs/ApiDocsContent.vue";
useHead({
title: "API 文档 - OCS AI 答题服务"
});
</script>
<template>
<ApiDocsContent />
</template>