mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 06:03:39 +09:00
1.1 KiB
1.1 KiB
Colors
<VButton /> components can have different colors.
Use the color prop on the component to change its color.
Available color values are primary, info, success, warning,
danger and white.
<template>
<VButtons>
<VButton color="primary">
Button
</VButton>
<VButton color="info">
Button
</VButton>
<VButton color="success">
Button
</VButton>
<VButton color="warning">
Button
</VButton>
<VButton color="danger">
Button
</VButton>
<VButton color="dark">
Button
</VButton>
<VButton color="white">
Button
</VButton>
</VButtons>
</template>