Text Transform
Use these directives to set the capitalization of text.
If you use the uppercase directive, don’t forget to combine it with a tracking utility.
Uppercase
vue
<template>
<p v-tracked v-ttu>
Uppercase
</p>
</template>
Uppercase
Lowercase
vue
<template>
<p v-ttl>LOWERCASE</p>
</template>
LOWERCASE
Capitalize
vue
<template>
<p v-ttc>
capitalize multiple words
</p>
</template>
capitalize multiple words