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

1.8 KiB

VTag curved

Vuero provides a <VTag /> component than can be customized to fit any needs. VTags can have curved edges. Use the curved prop to change the component shape.

<template>
  <VTags>
    <VTag label="Tag Label" />
    <VTag
      color="white"
      label="Tag Label"
      curved
    />
    <VTag
      color="light"
      label="Tag Label"
      curved
    />
    <VTag
      color="solid"
      label="Tag Label"
      curved
    />
    <VTag
      color="primary"
      label="Tag Label"
      curved
    />
    <VTag
      color="info"
      label="Tag Label"
      curved
    />
    <VTag
      color="success"
      label="Tag Label"
      curved
    />
    <VTag
      color="warning"
      label="Tag Label"
      curved
    />
    <VTag
      color="danger"
      label="Tag Label"
      curved
    />
    <VTag
      color="orange"
      label="Tag Label"
      curved
    />
    <VTag
      color="blue"
      label="Tag Label"
      curved
    />
    <VTag
      color="green"
      label="Tag Label"
      curved
    />
    <VTag
      color="purple"
      label="Tag Label"
      curved
    />
  </VTags>
</template>