Vuetify — Alert, Containers, and Avatars

John Au-Yeung
3 min readOct 28, 2020
Photo by Tom Bradley 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.

Alert Transition

Transition effects can be applied when we add alerts.

For instance, we can write:

<template>
<v-container>
<v-row class="text-center">…

--

--