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