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

-
+
``` @@ -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 -
-

Vant watermark

-
+
``` @@ -98,8 +100,8 @@ app.use(Watermark); | content | 文字水印的内容 | _string_ | - | | image | 图片水印的内容,如果与 `content` 同时传入,优先使用图片水印 | _string_ | - | | full-page | 水印是否全屏显示 | _boolean_ | `false` | -| gapX | 水印之间的水平间隔 | _number_ | `0` | -| gapY | 水印之间的垂直间隔 | _number_ | `0` | +| gap-x | 水印之间的水平间隔 | _number_ | `0` | +| gap-y | 水印之间的垂直间隔 | _number_ | `0` | | text-color | 文字水印的颜色 | _string_ | `#dcdee0` | | opacity | 水印的透明度 | _number \| string_ | - | @@ -107,7 +109,7 @@ app.use(Watermark); | 名称 | 说明 | | --- | --- | -| default | HTML 水印的内容,仅支持行内样式同时不支持传入自闭合标签,存在 `content` 或 `image` 属性时,此插槽无效 | +| content | HTML 水印的内容,仅支持行内样式,同时不支持传入自闭合标签,优先级高于 `content` 或 `image` 属性 | ### 类型定义 diff --git a/packages/vant/src/watermark/Watermark.tsx b/packages/vant/src/watermark/Watermark.tsx index 8c1ac42d3..f4133e8f5 100644 --- a/packages/vant/src/watermark/Watermark.tsx +++ b/packages/vant/src/watermark/Watermark.tsx @@ -47,8 +47,13 @@ export default defineComponent({ const watermarkUrl = ref(''); const imageBase64 = ref(''); const renderWatermark = () => { + const rotateStyle = { + transformOrigin: 'center', + transform: `rotate(${props.rotate}deg)`, + }; + const svgInner = () => { - if (props.image) { + if (props.image && !slots.content) { return ( + style={rotateStyle} + /> ); } @@ -69,20 +71,12 @@ export default defineComponent({
- {props.content ? ( - - {props.content} - + {slots.content ? ( + slots.content() ) : ( - slots?.default?.() + {props.content} )}
@@ -181,7 +175,7 @@ export default defineComponent({ return (
-
+
{renderWatermark()}
diff --git a/packages/vant/src/watermark/demo/index.vue b/packages/vant/src/watermark/demo/index.vue index 8ee4a9c7c..80708c28f 100644 --- a/packages/vant/src/watermark/demo/index.vue +++ b/packages/vant/src/watermark/demo/index.vue @@ -88,11 +88,17 @@ const fullPage = ref(false);
-
-

Vant watermark

-
+
diff --git a/packages/vant/src/watermark/index.less b/packages/vant/src/watermark/index.less index 2b50839da..299a9562d 100644 --- a/packages/vant/src/watermark/index.less +++ b/packages/vant/src/watermark/index.less @@ -12,6 +12,10 @@ background-repeat: repeat; pointer-events: none; + &__wrapper { + display: none; + } + &--full { position: fixed; } diff --git a/packages/vant/src/watermark/test/__snapshots__/index.spec.ts.snap b/packages/vant/src/watermark/test/__snapshots__/index.spec.ts.snap index 5e6458fe3..e0c656263 100644 --- a/packages/vant/src/watermark/test/__snapshots__/index.spec.ts.snap +++ b/packages/vant/src/watermark/test/__snapshots__/index.spec.ts.snap @@ -4,7 +4,7 @@ exports[`watermark should render content 1`] = `
-
+
Vant @@ -33,7 +33,7 @@ exports[`watermark should render html 1`] = `
-
+
vant watermark test
@@ -60,7 +60,7 @@ exports[`watermark should render image 1`] = `
-
+
-
+
vant watermark test
@@ -111,7 +111,7 @@ exports[`watermark test width, height, rotate, zIndex 1`] = `
-
+
vant watermark test
diff --git a/packages/vant/src/watermark/test/index.spec.ts b/packages/vant/src/watermark/test/index.spec.ts index 891bc8490..0762a9473 100644 --- a/packages/vant/src/watermark/test/index.spec.ts +++ b/packages/vant/src/watermark/test/index.spec.ts @@ -70,7 +70,7 @@ describe('watermark', () => { test('should render html', () => { const wrapper = mount(Watermark, { slots: { - default: () => 'vant watermark test', + content: () => 'vant watermark test', }, }); @@ -86,7 +86,7 @@ describe('watermark', () => { zIndex: 200, }, slots: { - default: () => 'vant watermark test', + content: () => 'vant watermark test', }, }); @@ -99,7 +99,7 @@ describe('watermark', () => { fullPage: false, }, slots: { - default: () => 'vant watermark test', + content: () => 'vant watermark test', }, });