mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 04:32:22 +09:00
734 B
734 B
Button group
You can easily align <VButton /> components and group them together
by wrapping them inside a <VButtons /> element.
You can mix any button styles.
<template>
<VButtons>
<VButton icon="lucide:eye">
View
</VButton>
<VButton icon="lucide:edit-2">
View
</VButton>
<VButton
color="primary"
icon="fas fa-check"
elevated
>
Approve
</VButton>
</VButtons>
</template>