mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[bugfix] Progress: incorrect width when update pivoit-text
This commit is contained in:
parent
bf2437b08a
commit
f34afd2deb
@ -50,8 +50,10 @@ export default sfc({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
getWidth() {
|
getWidth() {
|
||||||
this.progressWidth = this.$el.offsetWidth;
|
this.$nextTick(() => {
|
||||||
this.pivotWidth = this.$refs.pivot ? this.$refs.pivot.offsetWidth : 0;
|
this.progressWidth = this.$el.offsetWidth;
|
||||||
|
this.pivotWidth = this.$refs.pivot ? this.$refs.pivot.offsetWidth : 0;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user