0๐
โ
As seen in the installation docs, the Vuetify setup must import the styles (which is missing from your setup):
// src/plugins/vuetify.js
import 'vuetify/dist/vuetify.min.css'
Also make sure to update your index.html
to install the required fonts and icons:
<!-- public/index.html -->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@4.x/css/materialdesignicons.min.css" rel="stylesheet">
Source:stackexchange.com