mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 04:42:34 +09:00
first
This commit is contained in:
52
documentation/button/v-button-disabled-documentation.md
Normal file
52
documentation/button/v-button-disabled-documentation.md
Normal file
@@ -0,0 +1,52 @@
|
||||
### 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-->
|
||||
Reference in New Issue
Block a user