Vuetify — Alert Styles

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

Alerts

We create an alert with v-alert component.

To do that, we write:

<template>
<v-container>
<v-row class="text-center">
<v-col col="12">
<v-alert type="success">success…

--

--