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

891 B

<VButton /> provides a to property that can be used like on <RouterLink />. You can also use a href property to render a standard <a> tag. If none is used a <button> is rendered insted.

<template>
  <VButtons>
    <VButton to="/">
      Home
    </VButton>
    <VButton bold to="/">
      Home
    </VButton>
    <VButton rounded href="https://vuero.cssninja.io">
      Home
    </VButton>
    <VButton
      bold
      rounded
      href="https://vuero.cssninja.io"
    >
      Home
    </VButton>
  </VButtons>
</template>
Home Home Home Home