12345678910111213141516171819202122232425262728 |
- <template>
- <m-space>
- <m-button>默认按钮</m-button>
- <m-button type="primary">主要按钮</m-button>
- <m-button type="success">成功按钮</m-button>
- <m-button type="danger">危险按钮</m-button>
- <m-button type="info">信息按钮</m-button>
- <m-button type="warning">警告按钮</m-button>
- <m-button type="text">文本按钮</m-button>
- </m-space>
- <m-space>
- <m-button round>默认按钮</m-button>
- <m-button type="primary" round>主要按钮</m-button>
- <m-button type="success" round>成功按钮</m-button>
- <m-button type="danger" round>危险按钮</m-button>
- <m-button type="info" round>信息按钮</m-button>
- <m-button type="warning" round>警告按钮</m-button>
- </m-space>
- <m-space>
- <m-button leftIcon="icon-home"></m-button>
- <m-button type="primary" leftIcon="icon-edit"></m-button>
- <m-button type="success" leftIcon="icon-smile"></m-button>
- <m-button type="danger" leftIcon="icon-add-circle" circle></m-button>
- <m-button type="info" leftIcon="icon-telephone" circle></m-button>
- <m-button type="warning" leftIcon="icon-image-text" circle></m-button>
- <m-button type="text" leftIcon="icon-ashbin">删除</m-button>
- </m-space>
- </template>
|