feat: 完成整体内容开发
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<!-- app/pages/index.vue - 首页直接提供可用的答题工作台 -->
|
||||
<script lang="ts" setup>
|
||||
import AnswerForm from "@/components/home/AnswerForm.vue";
|
||||
import AnswerResult from "@/components/home/AnswerResult.vue";
|
||||
import OcsConfigCard from "@/components/home/OcsConfigCard.vue";
|
||||
|
||||
useHead({
|
||||
title: "OCS AI 答题服务"
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="grid items-start gap-6 lg:grid-cols-[minmax(0,1fr)_420px]">
|
||||
<div class="grid gap-5">
|
||||
<AnswerForm />
|
||||
<AnswerResult />
|
||||
</div>
|
||||
<OcsConfigCard />
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user