Skip to content

Tag: vuetify.js

Vuejs Multiple Style bindings?

i have a couple of different styling that needs to apply to a text. I am trying to bind the styles using array syntax as shown in the documentation: https://v2.vuejs.org/v2/guide/class-and-style.html but not sure what i’m doing wrong. I have created a pen for demonstration: https://codepen.io/anon/pen/o…

Vuetify adds scrollbar when it’s not needed

I created a new project with vue-cli, then added vuetify with vue add vuetify. Opened the site and saw a blank page with a useless scrollbar I tried mounting app without actually App component, but the problem still exists. It vanishes only when I remove import ‘./plugins/vuetify’ main.js Answer J…

How to get selected value from dropdown in vuejs?

HTML JS How can I get the selected value of v-select upon clicking on the button ? . . Answer If you are refering to vuetify you can continue reading. Let’s take this example (codepen): If you use other key for value in your items object you need to specify the item-value attribute in your v-select elem…