-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vue3+nuxt3版本,Tabs标签不生效 #396
Comments
无法直接定位name2 |
Hey @yeshili! I'm here to help you with any bugs, questions, or to guide you on how to become a contributor. Let's squash those bugs together! 🤖 To resolve the issue with the Additionally, make sure you are using the <template>
<Tabs v-model="activeTab">
<TabPane label="标签一" name="name1">标签一的内容</TabPane>
<TabPane label="标签二" name="name2">标签二的内容</TabPane>
<TabPane label="标签三" name="name3">标签三的内容</TabPane>
</Tabs>
</template>
<script>
import { ref } from 'vue';
export default {
setup() {
const activeTab = ref('name2'); // Set the initial active tab
return { activeTab };
}
};
</script> Ensure that your To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
vue3+nuxt3版本,Tabs标签不生效
都不生效的
The text was updated successfully, but these errors were encountered: