mirror of https://github.com/ElemeFE/element
fix(Tabs): Cannot read property 'scrollToActiveTab' of undefined"
vue.runtime.esm.js:619 [Vue warn]: Error in nextTick: "TypeError: Cannot read property 'scrollToActiveTab' of undefined" found in ---> <TabNav> at packages/tabs/src/tab-nav.vue <ElTabs> at packages/tabs/src/tabs.vuepull/20996/head
parent
17de41f3e2
commit
06238963e8
|
@ -47,7 +47,7 @@
|
||||||
if (this.$refs.nav) {
|
if (this.$refs.nav) {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.nav.$nextTick(_ => {
|
this.$refs.nav.$nextTick(_ => {
|
||||||
this.$refs.nav.scrollToActiveTab();
|
this.$refs.nav && this.$refs.nav.scrollToActiveTab();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue