diff --git a/packages/vant/src/watermark/README.md b/packages/vant/src/watermark/README.md
index a0400f308..3f6729ebb 100644
--- a/packages/vant/src/watermark/README.md
+++ b/packages/vant/src/watermark/README.md
@@ -76,13 +76,15 @@ Use the `full-page` prop to control the display range of the watermark.
### HTML Watermark
-Use the `default` slot to pass HTML directly. Inline styles are supported, and self-closing tags are not supported.
+Use the `content` slot to pass HTML as watermark. Only supports inline styles, and self-closing tags are not supported.
```html
-
-
Vant watermark
-
+
+
+
Vant watermark
+
+
```
@@ -98,8 +100,8 @@ Use the `default` slot to pass HTML directly. Inline styles are supported, and s
| content | Text watermark content | _string_ | - |
| image | Image watermark content. If `content` and `image` are passed at the same time, use the `image` watermark first | _string_ | - |
| full-page | Whether to display the watermark in full screen | _boolean_ | `true` |
-| gapX | Horizontal spacing between watermarks | _number_ | `0` |
-| gapY | Vertical spacing between watermarks | _number_ | `0` |
+| gap-x | Horizontal spacing between watermarks | _number_ | `0` |
+| gap-y | Vertical spacing between watermarks | _number_ | `0` |
| text-color | Color of text watermark | _string_ | `#dcdee0` |
| opacity | Opacity of watermark | _number \| string_ | - |
@@ -107,7 +109,7 @@ Use the `default` slot to pass HTML directly. Inline styles are supported, and s
| Attribute | Description |
| --- | --- |
-| default | Content of HTML watermark. Inline styles are supported, and self-closing tags are not supported. This slot is invalid if `content` or `image` props is passed |
+| content | Content of HTML watermark. Only supports inline styles, and self-closing tags are not supported. The priority is higher than `content` or `image` props |
### Types
diff --git a/packages/vant/src/watermark/README.zh-CN.md b/packages/vant/src/watermark/README.zh-CN.md
index fb4627782..1c495afd9 100644
--- a/packages/vant/src/watermark/README.zh-CN.md
+++ b/packages/vant/src/watermark/README.zh-CN.md
@@ -76,13 +76,15 @@ app.use(Watermark);
### HTML 水印
-通过默认插槽可以直接传入 HTML,HTML 样式仅支持行内样式同时不支持传入自闭合标签。
+通过 `content` 插槽可以直接传入 HTML 作为水印。HTML 中的样式仅支持行内样式,同时不支持传入自闭合标签。
```html
-