Skip to content
Advertisement

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/orVGNP The computed property style is the one i am trying to apply as well which

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 Just add the following to your css style : This default

creating abstract components that can manage external data

Currently I use Vuetify for base components and would like to create reusable extensions. For example a list containing checkboxes, a datatable column with some functionality etc. For this question I will take the list containing checkboxes example. I created the following component called CheckboxGroup.vue This component takes an array of objects as a property and creates a checkbox for

Vuelidate: setting $model does not update component

Given the following Vue component that uses Vuetify and Vuelidate: I would like to programmatically change the value of this.picker. I tried both changing the v-model as well as the Vuelidate $model: and Neither of them caused a change in the UI nor produced an error message. How can I programmatically update the DatePicker’s value? Answer Try just assigning v-model

Is there specific number input component in Vuetify?

I’ve seen a component in Element UI for managing the amount of items, it’s over here: https://element.eleme.io/#/en-US/component/input-number I would want to use something like that in Vuetify, but I cannot find a similar component or even similar style example in Material Design. What’s the best way to achieve it? Answer Update: This answer pertains to version 1 of Vuetify, yukashima

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 element, else it will

Advertisement