-
Notifications
You must be signed in to change notification settings - Fork 835
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
fix(tabs): resolve tabpane show errors #1544 #1636
Conversation
@Drjingfubo 大哥你的这段代码 直接修改了panKey的数据类型呀 这个key到底是String还是Number title.paneKey = paneIndex || camelPaneIndex || String(index); |
|
我记得以前是Number 修复了一个bug之后变成了String 改动数据的影响很大 希望changedlog上能够有体现 谢谢 |
上方定义的类型一直没变过,你可以看下提交记录 |
我明白兄弟你的意思,我们后边标注的更清晰一点。 |
|
我们的逻辑如下: <nut-tab v-model:"tab.current"></nut-tab>
<div v-for="(item, index) in listData">
<component v-if="tab.current === index" ></component>
</div> 因为 |
No description provided.