Files
general-template/components/style-components/typography/TextDecoration.vue
T
2026-03-13 03:56:11 +00:00

9 lines
371 B
Vue
Executable File

<template>
<div class="d-flex justify-space-between flex-row">
<a href="#" class="text-decoration-none">Non-underlined link</a>
<div class="text-decoration-line-through">Line-through text</div>
<div class="text-decoration-overline">Overline text</div>
<div class="text-decoration-underline">Underline text</div>
</div>
</template>