12345678910111213141516171819 |
- <template>
- <m-space>
- <m-button disabled>默认按钮</m-button>
- <m-button type="primary" disabled>主要按钮</m-button>
- <m-button type="success" disabled>成功按钮</m-button>
- <m-button type="danger" disabled>危险按钮</m-button>
- <m-button type="info" disabled>信息按钮</m-button>
- <m-button type="warning" disabled>警告按钮</m-button>
- <m-button type="text" disabled>文本按钮</m-button>
- </m-space>
- <m-space>
- <m-button round disabled>默认按钮</m-button>
- <m-button type="primary" round disabled>主要按钮</m-button>
- <m-button type="success" round disabled>成功按钮</m-button>
- <m-button type="danger" round disabled>危险按钮</m-button>
- <m-button type="info" round disabled>信息按钮</m-button>
- <m-button type="warning" round disabled>警告按钮</m-button>
- </m-space>
- </template>
|