We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
问题:vue 路由跳转 compoment 销毁前remove掉水印,新的页面还是会存在水印。 解决:看源码没看出问题。如果既想保留禁止删除水印功能又想正常remove掉,可以在remove之前重新init一下,重新init的时候保留原来配置的基础上,需要新加一个配置:monitor: false,如下:
monitor: false
const watermarkOptions = { // ...... } watermark.init({ ...watermarkOptions, monitor: false }) watermark.remove();
The text was updated successfully, but these errors were encountered:
vue.js 2中无法移除水印!!
Sorry, something went wrong.
No branches or pull requests
问题:vue 路由跳转 compoment 销毁前remove掉水印,新的页面还是会存在水印。
解决:看源码没看出问题。如果既想保留禁止删除水印功能又想正常remove掉,可以在remove之前重新init一下,重新init的时候保留原来配置的基础上,需要新加一个配置:
monitor: false
,如下:The text was updated successfully, but these errors were encountered: