同时支持 Vue 2、Vue 3和React。
import WatermarkDesign from '@watermark-design/vue';
app.use(WatermarkDesign);
<Watermark content="hello watermark" :width="200" :height="200">
<div style="height: 400px"></div>
</Watermark>
import { Watermark } from '@watermark-design/react';
<Watermark width={200} height={200} content={inputValue}>
<div style={{ height: 400 }}></div>
</Watermark>
import { Watermark } from '@watermark-design/dom';
const watermark = new Watermark({
content: 'hello my watermark',
width: 200,
height: 200,
});
watermark.create();
要了解更多,请查看文档
非常欢迎你的加入!提一个 Issue 或者提交一个 Pull Request。
标准 Readme 遵循 Contributor Covenant 行为规范。
感谢以下参与项目的人:
MIT © MichaelSun