Update TabViewDemo.vue
parent
b39fc431e0
commit
e219b1462f
|
@ -179,10 +179,12 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
this.themeChangeListener = () => {
|
this.themeChangeListener = () => {
|
||||||
this.timeout = setTimeout(() => {
|
this.timeout = setTimeout(() => {
|
||||||
this.$refs.tabview1.updateInkBar();
|
if (this.$refs.tabview1) {
|
||||||
this.$refs.tabview2.updateInkBar();
|
this.$refs.tabview1.updateInkBar();
|
||||||
this.$refs.tabview3.updateInkBar();
|
this.$refs.tabview2.updateInkBar();
|
||||||
this.$refs.tabview4.updateInkBar();
|
this.$refs.tabview3.updateInkBar();
|
||||||
|
this.$refs.tabview4.updateInkBar();
|
||||||
|
}
|
||||||
}, 50);
|
}, 50);
|
||||||
};
|
};
|
||||||
EventBus.on('theme-change', this.themeChangeListener);
|
EventBus.on('theme-change', this.themeChangeListener);
|
||||||
|
|
Loading…
Reference in New Issue