This commit is contained in:
lb
2023-05-11 16:05:55 +08:00
parent bdccab85c9
commit 6ef1d50911
13 changed files with 273 additions and 84 deletions

View File

@@ -1,7 +1,7 @@
<template>
<svg
width="adjust(64px)"
height="adjust(64px)"
:width="adjust('64px')"
:height="adjust('64px')"
viewBox="0 0 95 96"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
@@ -78,3 +78,13 @@
</g>
</svg>
</template>
<script>
export default {
methods: {
adjust(v) {
return +(v.slice(0, -2)) * 2 + 'px' ;
},
},
};
</script>