9 lines
371 B
Vue
Executable File
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>
|