Vuetify — Text Styles
Vuetify is a popular UI framework for Vue apps.
In this article, we’ll look at how to work with the Vuetify framework.
Typography
We can add classes for typography.
For example, we can write:
<template>
<v-container>
<v-row class="text-center">
<div class="text-h1">heading 1</div>
</v-row>…