Browse Source

[修复] uview框架的tabs组件,切换tab的bug

dev
邓平艺 4 years ago
parent
commit
a6138f70f9
  1. 6
      uview-ui/components/u-tabs/u-tabs.vue

6
uview-ui/components/u-tabs/u-tabs.vue

@ -178,7 +178,11 @@
// applist
list(n, o) {
// list
if(n.length !== o.length) this.currentIndex = 0;
if(n.length !== o.length){
this.currentIndex = 0;
}else{
return;
}
// $nextTicktabtab
this.$nextTick(() => {
this.init();

Loading…
Cancel
Save