mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 06:03:39 +09:00
987 B
987 B
Elevation
<VButton /> components can be elevated using box shadows.
Use the raised prop to show a box shadow on hover or
use the elevated prop to set a permanent box shadow.
<template>
<VButtons>
<VButton color="primary" raised>
Button
</VButton>
<VButton color="info" raised>
Button
</VButton>
<VButton color="success" raised>
Button
</VButton>
<VButton color="warning" raised>
Button
</VButton>
<VButton color="danger" elevated>
Button
</VButton>
</VButtons>
</template>