mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 08:13:40 +09:00
38 lines
665 B
Markdown
38 lines
665 B
Markdown
### VAction
|
|
|
|
Vuero provides a versatile small button component named
|
|
`<VAction />` components can have different colors.
|
|
VActions can be `rounded`, `hoverable` or `grey` using the related props.
|
|
|
|
<!--code-->
|
|
|
|
```vue
|
|
<template>
|
|
<VButtons>
|
|
<VAction> Action </VAction>
|
|
<VAction rounded>
|
|
Action
|
|
</VAction>
|
|
<VAction hoverable>
|
|
Action
|
|
</VAction>
|
|
<VAction grey>
|
|
Action
|
|
</VAction>
|
|
</VButtons>
|
|
</template>
|
|
```
|
|
|
|
<!--/code-->
|
|
|
|
<!--example-->
|
|
|
|
<VButtons>
|
|
<VAction> Action </VAction>
|
|
<VAction rounded> Action </VAction>
|
|
<VAction hoverable> Action </VAction>
|
|
<VAction grey> Action </VAction>
|
|
</VButtons>
|
|
|
|
<!--/example-->
|