elbutton写法
`el-button` 是 Element UI 中的按钮组件,以下是一些常见的 `el-button` 的写法示例:
1. 默认按钮:
```html
<el-button>默认按钮</el-button>
```
2. 主要按钮:
```html
<el-button type="primary">主要按钮</el-button>
```
3. 成功按钮:
```html
<el-button type="success">成功按钮</el-button>
```
4. 信息按钮:
```html
<el-button type="info">信息按钮</el-button>
```
5. 警告按钮:
```html
<el-button type="warning">警告按钮</el-button>
```
6. 危险按钮:
```html
<el-button type="danger">危险按钮</el-button>
```
7. 朴素按钮:
```html
<el-button type="plain">朴素按钮</el-button>
```改变button按钮的形状
8. 圆形按钮:
```html
<el-button round>圆形按钮</el-button>
```

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。