[Vuejs]-I'm upgrading the Vuetify version from 1.5 to 2.0, but the previously installed plugin is no longer visible in the project

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

Leave a comment