mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
19 lines
533 B
Markdown
19 lines
533 B
Markdown
---
|
|
layout: templateLayout
|
|
---
|
|
```vue
|
|
<template>
|
|
<Wb-button disabled>Default</Wb-button>
|
|
<Wb-button type="ghost" disabled>Ghost</Wb-button>
|
|
<Wb-button type="text" disabled>Text</Wb-button>
|
|
<Wb-button type="primary" disabled>Primary</Wb-button>
|
|
<Wb-button type="info" disabled>Info</Wb-button>
|
|
<Wb-button type="success" disabled>Success</Wb-button>
|
|
<Wb-button type="warn" disabled>Warn</Wb-button>
|
|
<Wb-button type="error" disabled>Error</Wb-button>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
}
|
|
</script>
|
|
``` |