2👍
✅
unpkg.com links to the latest version of vuetify, which is currently 0.17.0. To use 0.16.9 css from unpkg you have to use this link: https://unpkg.com/vuetify@0.16.9/dist/vuetify.min.css
0👍
I fixed it by removing
<link href="https://unpkg.com/vuetify/dist/vuetify.min.css" rel="stylesheet">
from index.html, and adding
import '../node_modules/vuetify/dist/vuetify.min.css';
to main.js file.
Dunno why it worked though.
Source:stackexchange.com