<svg :style="{width: 100px; height: 100px}" aria-hidden="true"> <use xlink:href="#iconqiyehezuo"></use> </svg> 如何 style动态设置宽高
时间: 2024-01-03 11:23:09 浏览: 176
动态设置View的宽高(设置ViewPager的高度)
你可以使用`v-bind`指令来动态设置SVG的样式。在这种情况下,你可以使用`:style`来绑定一个对象,该对象包含你想要设置的样式属性和值。在这个例子中,你可以使用`:style="{width: '100px', height: '100px'}"`来设置SVG的宽度和高度为100像素。
```html
<svg :style="{width: '100px', height: '100px'}" aria-hidden="true">
<use xlink:href="#iconqiyehezuo"></use>
</svg>
```
阅读全文