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()
|
||||
.then(nextTick)
|
||||
.then(() => {
|
||||
this.set({ transition: true });
|
||||
})
|
||||
.then(() => {
|
||||
this.onTransitionEnd();
|
||||
const data: Record<string, boolean | string> = { transition: true };
|
||||
|
||||
if (this.data.expanded) {
|
||||
data.contentHeight = 'auto';
|
||||
}
|
||||
|
||||
this.set(data);
|
||||
});
|
||||
},
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user