[bugfix] Progress: incorrect width when update pivoit-text

This commit is contained in:
陈嘉涵 2019-05-10 11:09:39 +08:00
parent bf2437b08a
commit f34afd2deb

View File

@ -50,8 +50,10 @@ export default sfc({
methods: {
getWidth() {
this.progressWidth = this.$el.offsetWidth;
this.pivotWidth = this.$refs.pivot ? this.$refs.pivot.offsetWidth : 0;
this.$nextTick(() => {
this.progressWidth = this.$el.offsetWidth;
this.pivotWidth = this.$refs.pivot ? this.$refs.pivot.offsetWidth : 0;
});
}
},