mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
33 lines
342 B
Markdown
33 lines
342 B
Markdown
|
# Disabled
|
||
|
Button can be disabled
|
||
|
```html
|
||
|
<n-button
|
||
|
size="small"
|
||
|
disabled
|
||
|
>
|
||
|
Disabled
|
||
|
</n-button>
|
||
|
<n-button
|
||
|
disabled
|
||
|
type="primary"
|
||
|
>
|
||
|
Disabled
|
||
|
</n-button>
|
||
|
<n-button
|
||
|
disabled
|
||
|
round
|
||
|
type="primary"
|
||
|
>
|
||
|
regular size
|
||
|
</n-button>
|
||
|
<n-button
|
||
|
disabled
|
||
|
circle
|
||
|
icon="md-save"
|
||
|
/>
|
||
|
```
|
||
|
```css
|
||
|
.n-button {
|
||
|
margin: 0 8px 8px 0;
|
||
|
}
|
||
|
```
|