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.

38 lines
757 B

  1. <!--标签页导航-->
  2. <template>
  3. <div class="tabs">
  4. <button
  5. class="tab-btn"
  6. :class="{ active: activeTab === 'user' }"
  7. @click="$emit('update:activeTab', 'user')"
  8. >
  9. 用户数据
  10. </button>
  11. <button
  12. class="tab-btn"
  13. :class="{ active: activeTab === 'wrong' }"
  14. @click="$emit('update:activeTab', 'wrong')"
  15. >
  16. 错题统计
  17. </button>
  18. <button
  19. class="tab-btn"
  20. :class="{ active: activeTab === 'question' }"
  21. @click="$emit('update:activeTab', 'question')"
  22. >
  23. 题库管理
  24. </button>
  25. </div>
  26. </template>
  27. <script>
  28. export default {
  29. name: 'TabNavigation',
  30. props: {
  31. activeTab: {
  32. type: String,
  33. required: true
  34. }
  35. }
  36. }
  37. </script>