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