diff --git a/packages/vant/src/floating-panel/FloatingPanel.tsx b/packages/vant/src/floating-panel/FloatingPanel.tsx
index 2751dc486..bc1fe2366 100644
--- a/packages/vant/src/floating-panel/FloatingPanel.tsx
+++ b/packages/vant/src/floating-panel/FloatingPanel.tsx
@@ -150,6 +150,18 @@ export default defineComponent({
// useEventListener will set passive to `false` to eliminate the warning of Chrome
useEventListener('touchmove', onTouchmove, { target: rootRef });
+ const renderHeader = () => {
+ if (slots.header) {
+ return slots.header();
+ }
+
+ return (
+
+ );
+ };
+
return () => (
-
+ {renderHeader()}
{slots.default?.()}
diff --git a/packages/vant/src/floating-panel/README.md b/packages/vant/src/floating-panel/README.md
index 7a15aa931..4d8a0ba41 100644
--- a/packages/vant/src/floating-panel/README.md
+++ b/packages/vant/src/floating-panel/README.md
@@ -102,6 +102,7 @@ By default, both the header and content areas of FloatingPanel can be dragged, b
| Name | Description |
| ------- | -------------------- |
| default | Custom panel content |
+| header | Custom panel header |
### Types
diff --git a/packages/vant/src/floating-panel/README.zh-CN.md b/packages/vant/src/floating-panel/README.zh-CN.md
index c8d65b57f..9a4672b9c 100644
--- a/packages/vant/src/floating-panel/README.zh-CN.md
+++ b/packages/vant/src/floating-panel/README.zh-CN.md
@@ -102,6 +102,7 @@ export default {
| Name | Description |
| ------- | -------------- |
| default | 自定义面板内容 |
+| header | 自定义面板标头 |
### 类型定义
diff --git a/packages/vant/src/floating-panel/test/__snapshots__/index.spec.tsx.snap b/packages/vant/src/floating-panel/test/__snapshots__/index.spec.tsx.snap
index 2ba52dd15..98226e04e 100644
--- a/packages/vant/src/floating-panel/test/__snapshots__/index.spec.tsx.snap
+++ b/packages/vant/src/floating-panel/test/__snapshots__/index.spec.tsx.snap
@@ -29,3 +29,14 @@ exports[`should minHeight 100 and maxHeight 0.6 innerHeight when anchors props d
`;
+
+exports[`should render header slot correctly 1`] = `
+
+`;
diff --git a/packages/vant/src/floating-panel/test/index.spec.tsx b/packages/vant/src/floating-panel/test/index.spec.tsx
index deaa6c139..570d0cd17 100644
--- a/packages/vant/src/floating-panel/test/index.spec.tsx
+++ b/packages/vant/src/floating-panel/test/index.spec.tsx
@@ -116,3 +116,15 @@ test('should only drag header when allowDraggingContent is false', async () => {
await later();
expect(wrapper.emitted('change')).toBeTruthy();
});
+
+test('should render header slot correctly', () => {
+ const wrapper = mount(FloatingPanel, {
+ slots: {
+ header: () => 'Custom Header',
+ },
+ });
+
+ expect(wrapper.html()).toMatchSnapshot();
+
+ wrapper.unmount();
+});