
Product
Introducing Repository Access Permissions and Custom Roles
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.
vue-watermark-directive
Advanced tools
使用npm安装
npm install vue-watermark-directive --save
在应用初始化时,安装插件。
import Vue from 'vue'
import watermark from 'vue-watermark-directive'
Vue.config.productionTip = false
Vue.use(watermark)
...
这里也支持使用第二个参数来配置插件。
import Vue from 'vue'
import vueWatermark from 'vue-watermark-directive'
const DEFAULT_CONFIG = {
zIndex: 1000,
font: '16px microsoft yahei',
color: 'rgba(0,0,0,0.05)',
content: 'Hello World',
rotate: 20,
width: 100,
height: 100,
repeat: true
}
Vue.config.productionTip = false
Vue.use(vueWatermark, DEFAULT_CONFIG)
...
在使用vue模版中就可以使用v-watermark指令了。
支持直接绑定字符串,也可以传入自定义的配置。
使用字符串:
<div
class="container"
v-watermark="'ABC'">
</div>
使用自定义配置:
<div
class="container"
v-watermark="{
content: 'ABC'
}">
</div>
可配置字段
| 字段 | 功能 |
|---|---|
| zIndex | 设置z-index |
| color | 水印颜色 |
| font | 水印字体 |
| content | 设置水印内容 |
| rotate | 设置水印旋转角度 |
| width | 设置宽度 |
| height | 设置高度 |
| repeat | 设置是否重复 |
FAQs
使用npm安装
The npm package vue-watermark-directive receives a total of 125 weekly downloads. As such, vue-watermark-directive popularity was classified as not popular.
We found that vue-watermark-directive demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.