fix: dropdown not update when slot change
parent
503d358188
commit
81eb401a88
|
@ -71,12 +71,18 @@ export default {
|
|||
}
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
forceRender(p) {
|
||||
this.comProps = p;
|
||||
this.$forceUpdate();
|
||||
},
|
||||
},
|
||||
render() {
|
||||
return self.getComponent(this.comProps);
|
||||
},
|
||||
});
|
||||
} else {
|
||||
this._component.comProps = props;
|
||||
this._component.forceRender(props);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -108,17 +108,10 @@ export default {
|
|||
watch: {
|
||||
popupVisible(val) {
|
||||
if (val !== undefined) {
|
||||
this.prevPopupVisible = this.sPopupVisible;
|
||||
this.sPopupVisible = val;
|
||||
this.prevPopupVisible = val;
|
||||
}
|
||||
},
|
||||
sPopupVisible() {
|
||||
this.$nextTick(() => {
|
||||
this.renderComponent(null, () => {
|
||||
this.afterPopupVisibleChange(this.sPopupVisible);
|
||||
});
|
||||
});
|
||||
},
|
||||
},
|
||||
deactivated() {
|
||||
this.setPopupVisible(false);
|
||||
|
@ -131,7 +124,13 @@ export default {
|
|||
},
|
||||
|
||||
updated() {
|
||||
const triggerAfterPopupVisibleChange = () => {
|
||||
if (this.sPopupVisible !== this.prevPopupVisible) {
|
||||
this.afterPopupVisibleChange(this.sPopupVisible);
|
||||
}
|
||||
};
|
||||
this.$nextTick(() => {
|
||||
this.renderComponent(null, triggerAfterPopupVisibleChange);
|
||||
this.updatedCal();
|
||||
});
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue