水印增强器
以更优雅的方式将水印添加到您的React组件中。
移步
1.安装
npm i watermark-enhancer -d
2.使用
import EnhancerWaterMark from 'watermark-enhancer'
export default EnhancerWaterMark({
width: '100',
height: '80',
rotate: '17',
content: 'test',
asyncContent: renderEffectContent,
}, {
content: 'watermark loading...',
color: 'black',
background: 'white'
})(WrappedComponent)
3.注意
参数说明EnhancerWaterMark(
waterma
1