[bugfix] Collapse: remove reference from children of collapse when collapse-item unlinked

fix #1515
This commit is contained in:
rex 2019-04-15 11:22:17 +08:00 committed by GitHub
parent 40ab808f02
commit 1d1970a7f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,11 @@ VantComponent({
type: 'descendant',
linked(child: Weapp.Component) {
this.children.push(child);
},
unlinked(child: Weapp.Component) {
this.children = this.children.filter(
(item: Weapp.Component) => item !== child
);
}
},
@ -40,7 +45,9 @@ VantComponent({
if (!accordion) {
name = expanded
? (value || []).concat(name)
: (value || []).filter((activeName: string | number) => activeName !== name);
: (value || []).filter(
(activeName: string | number) => activeName !== name
);
} else {
name = expanded ? name : '';
}