fix: 修复使用 extendSlots 时插槽参数未传递的问题。 (#2056)

Co-authored-by: sevth <pengqiang@vastweb>
This commit is contained in:
sevth 2022-07-10 18:27:56 +08:00 committed by GitHub
parent 9c26ee1b9c
commit 266c33819f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ export function extendSlots(slots: Slots, excludeKeys: string[] = []) {
if (excludeKeys.includes(key)) { if (excludeKeys.includes(key)) {
return null; return null;
} }
ret[key] = () => getSlot(slots, key); ret[key] = (data?: any) => getSlot(slots, key, data);
}); });
return ret; return ret;
} }