mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 07:03:41 +09:00
1.1 KiB
1.1 KiB
Outlined Colors
<VButton /> solid color can have an outlined button style.
Use the color prop to set a solid color and
use the outlined modifier prop to make an outlined button.
<template>
<VButtons>
<VButton color="primary" outlined>
Button
</VButton>
<VButton color="info" outlined>
Button
</VButton>
<VButton color="success" outlined>
Button
</VButton>
<VButton color="warning" outlined>
Button
</VButton>
<VButton color="danger" outlined>
Button
</VButton>
<VButton color="dark" outlined>
Button
</VButton>
<VButton outlined>
Button
</VButton>
</VButtons>
</template>