mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[improvement] Collapse: reduce setData (#1847)
This commit is contained in:
parent
bc41e82c34
commit
14912f75b6
@ -41,10 +41,13 @@ VantComponent({
|
|||||||
this.updateExpanded()
|
this.updateExpanded()
|
||||||
.then(nextTick)
|
.then(nextTick)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
this.set({ transition: true });
|
const data: Record<string, boolean | string> = { transition: true };
|
||||||
})
|
|
||||||
.then(() => {
|
if (this.data.expanded) {
|
||||||
this.onTransitionEnd();
|
data.contentHeight = 'auto';
|
||||||
|
}
|
||||||
|
|
||||||
|
this.set(data);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user