Vuetify — Text Styles

John Au-Yeung
3 min readOct 14, 2020
Photo by Amanda Vick on Unsplash

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>…

--

--