demo2.vue 874 B

12345678910111213141516171819
  1. <template>
  2. <m-space>
  3. <m-button disabled>默认按钮</m-button>
  4. <m-button type="primary" disabled>主要按钮</m-button>
  5. <m-button type="success" disabled>成功按钮</m-button>
  6. <m-button type="danger" disabled>危险按钮</m-button>
  7. <m-button type="info" disabled>信息按钮</m-button>
  8. <m-button type="warning" disabled>警告按钮</m-button>
  9. <m-button type="text" disabled>文本按钮</m-button>
  10. </m-space>
  11. <m-space>
  12. <m-button round disabled>默认按钮</m-button>
  13. <m-button type="primary" round disabled>主要按钮</m-button>
  14. <m-button type="success" round disabled>成功按钮</m-button>
  15. <m-button type="danger" round disabled>危险按钮</m-button>
  16. <m-button type="info" round disabled>信息按钮</m-button>
  17. <m-button type="warning" round disabled>警告按钮</m-button>
  18. </m-space>
  19. </template>