vue中button怎么设置大小形状
时间: 2023-05-11 14:04:58 浏览: 266
vue中echarts图表大小适应窗口大小且不需要刷新案例
在Vue中,可以使用class或style属性来设置button的大小和形状。例如,可以使用class属性来设置button的大小和形状,如下所示:
```
<button class="btn-lg btn-primary">Large Primary Button</button>
```
这将创建一个大型的蓝色按钮。同样,可以使用style属性来设置button的大小和形状,如下所示:
```
<button style="width: 200px; height: 50px; border-radius: 10px;">Custom Button</button>
```
这将创建一个自定义大小和形状的按钮,宽度为200像素,高度为50像素,边框半径为10像素。
阅读全文