[improvement] Collapse: reduce setData (#1847)

This commit is contained in:
neverland 2019-08-08 17:14:53 +08:00 committed by GitHub
parent bc41e82c34
commit 14912f75b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
});
},