12345678910111213141516171819202122232425 |
- <script setup lang='ts'>
- const router = useRouter()
- </script>
- <template>
- <div class="w-1400px h-640px flex flex-col">
- <div class="flex justify-between">
- <div class="space-x-2 text-blue-700 flex items-center">
- <i:cil:home />
- <span>首页</span>
- <span>/</span>
- <span>错题分析</span>
- <span>/</span>
- <span>错题列表</span>
- <span>/</span>
- <span class="text-gray-600">详情</span>
- </div>
- <el-button type="primary" @click="router.back()">返回</el-button>
- </div>
- <cuoti-detail />
- </div>
- </template>
|