瀏覽代碼

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

Co-authored-by: sevth <pengqiang@vastweb>
sevth 2 年之前
父節點
當前提交
266c33819f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/utils/helper/tsxHelper.tsx

+ 1 - 1
src/utils/helper/tsxHelper.tsx

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