[Vuejs]-Text field from Vuetify has no underline

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.

0👍

In my case the fix was to add margin-bottom 1px to the input element. Hope it helps.

Leave a comment