Skip to content

Text Decoration

Utilities for decorating text with underlines, or removing the default underlines browsers put on links.

None

vue
<template>
  <a v-no-underline href="#">
    no-underline
  </a>
</template>
no-underline

Underline

vue
<template>
  <p v-underline>underline</p>
</template>

underline

Strikethrough

vue
<template>
  <p v-strike>strikethrough</p>
</template>

strikethrough

Reference