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
38 lines
757 B
<!--标签页导航-->
|
|
<template>
|
|
<div class="tabs">
|
|
<button
|
|
class="tab-btn"
|
|
:class="{ active: activeTab === 'user' }"
|
|
@click="$emit('update:activeTab', 'user')"
|
|
>
|
|
用户数据
|
|
</button>
|
|
<button
|
|
class="tab-btn"
|
|
:class="{ active: activeTab === 'wrong' }"
|
|
@click="$emit('update:activeTab', 'wrong')"
|
|
>
|
|
错题统计
|
|
</button>
|
|
<button
|
|
class="tab-btn"
|
|
:class="{ active: activeTab === 'question' }"
|
|
@click="$emit('update:activeTab', 'question')"
|
|
>
|
|
题库管理
|
|
</button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'TabNavigation',
|
|
props: {
|
|
activeTab: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
}
|
|
}
|
|
</script>
|