Files
aurora-admin/site/sources/watermark/vue2.txt
T
aurora-admin c65a69c34e
Deploy to GitHub Pages / deploy (push) Failing after 16s
Regression / regression (push) Failing after 15m2s
feat(P4): precompute移植+app.js sources双向回填+回归1003/1003+验收体积/文件/data.json
2026-09-12 14:18:41 +08:00

28 lines
1.0 KiB
Plaintext

<template>
<div class="aa-watermark" :class="{ 'is-fullscreen': fullscreen }" :style="{ backgroundImage: bg }"></div>
</template>
<script>
export default {
name: 'AaWatermark',
props: {
text: { type: String, default: 'Aurora Admin' },
color: { type: String, default: 'rgba(0,0,0,0.10)' },
fontSize: { type: Number, default: 14 },
rotate: { type: Number, default: -22 },
gap: { type: Number, default: 160 },
fullscreen: { type: Boolean, default: false }
},
computed: {
bg: function () {
var svg = "<svg xmlns='http://www.w3.org/2000/svg' width='" + this.gap + "' height='" + this.gap + "'>" +
"<text x='0' y='" + (this.fontSize + 6) + "' font-family='sans-serif' font-size='" + this.fontSize +
"' fill='" + this.color + "' transform='rotate(" + this.rotate + " 0 " + (this.fontSize + 6) + ")'> " + this.text + " </text></svg>";
return "url(\"data:image/svg+xml;utf8," + encodeURIComponent(svg) + "\")";
}
}
};
</script>
<style src="./Watermark.css"></style>