mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 07:43:32 +09:00
53 lines
942 B
Markdown
53 lines
942 B
Markdown
### Disabled
|
|
|
|
`<VButton />` components can be disabled and not responsive to pointer events.
|
|
Use the `disabled` prop to set a button in a disabled state.
|
|
|
|
<!--code-->
|
|
|
|
```vue
|
|
<template>
|
|
<VButtons>
|
|
<VButton color="primary" disabled>
|
|
Button
|
|
</VButton>
|
|
<VButton color="info" disabled>
|
|
Button
|
|
</VButton>
|
|
<VButton color="success" disabled>
|
|
Button
|
|
</VButton>
|
|
<VButton color="warning" disabled>
|
|
Button
|
|
</VButton>
|
|
<VButton color="danger" disabled>
|
|
Button
|
|
</VButton>
|
|
</VButtons>
|
|
</template>
|
|
```
|
|
|
|
<!--/code-->
|
|
|
|
<!--example-->
|
|
|
|
<VButtons>
|
|
<VButton color="primary" disabled>
|
|
Button
|
|
</VButton>
|
|
<VButton color="info" disabled>
|
|
Button
|
|
</VButton>
|
|
<VButton color="success" disabled>
|
|
Button
|
|
</VButton>
|
|
<VButton color="warning" disabled>
|
|
Button
|
|
</VButton>
|
|
<VButton color="danger" disabled>
|
|
Button
|
|
</VButton>
|
|
</VButtons>
|
|
|
|
<!--/example-->
|