Files
oa/documentation/button/v-button-elevated-documentation.md
2025-05-24 01:49:48 +09:00

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>
Button Button Button Button Button