detail.vue 602 B

12345678910111213141516171819202122232425
  1. <script setup lang='ts'>
  2. const router = useRouter()
  3. </script>
  4. <template>
  5. <div class="w-1400px h-640px flex flex-col">
  6. <div class="flex justify-between">
  7. <div class="space-x-2 text-blue-700 flex items-center">
  8. <i:cil:home />
  9. <span>首页</span>
  10. <span>/</span>
  11. <span>错题分析</span>
  12. <span>/</span>
  13. <span>错题列表</span>
  14. <span>/</span>
  15. <span class="text-gray-600">详情</span>
  16. </div>
  17. <el-button type="primary" @click="router.back()">返回</el-button>
  18. </div>
  19. <cuoti-detail />
  20. </div>
  21. </template>