vue怎么在按钮里添加一个加号
时间: 2024-05-13 11:13:33 浏览: 144
vue 点击按钮增加一行的方法
5星 · 资源好评率100%
可以在按钮的标签内添加加号符号,如下所示:
```html
<button>
+
</button>
```
或者使用 font awesome 等图标库中的加号图标,如下所示:
```html
<button>
<i class="fas fa-plus"></i>
</button>
```
其中,`fas fa-plus` 是 font awesome 中加号图标的类名。需要在 HTML 页面中引入 font awesome 的 CSS 文件才能使用该图标。
阅读全文