Questions tagged [vuetify.js]

Vuetify.js is an open source framework for building user interfaces for Vue.js 2 and 3. Use this tag for questions specific to Vuetify components and API. (If possible, provide a CodePen or JsFiddle item reproducing your issue.)

8866 questions
46
votes
2 answers

Vuetify: colors are not showing up

I'm trying to integrate Vuetify to my existing Vue project, but the colors are not showing up correctly. I'm following the guide at https://vuetifyjs.com/en/getting-started/quick-start -> existing applications. The css file seems to be somehow…
Caner
  • 57,267
  • 35
  • 174
  • 180
45
votes
6 answers

Vuejs Vuetify how to access properties of object in v-select

My use case. I got an array of objects from a back-end api. I want to render those objects in a v-select This is my code.
margherita pizza
  • 6,623
  • 23
  • 84
  • 152
45
votes
1 answer

Vuetify - CSS not working (taking effect) inside component

Case 1 We are trying to apply custom a style to a rendered vuetify element: But there are no…
Traxo
  • 18,464
  • 4
  • 75
  • 87
45
votes
7 answers

Why do I see an "Electron Security Warning" after updating my Electron project to the latest version?

I've created Electron-Vuejs-Vuetify project from this Vuetify's boilerplate I'm seeing this warning in the console: Electron Security Warning This renderer process has Node.js integration enabled and attempted to load remote content. This exposes…
Un1
  • 3,874
  • 12
  • 37
  • 79
44
votes
2 answers

How to align the contents to the center of the v-card component in Vuetify?

Currently in the products.vue, I have an array of productList containing 4 objects. I will loop through the array and pass each individual objects to the ProductsItem.vue component. In that component, I create the cards using vuetify. I am unable to…
Issaki
  • 1,012
  • 2
  • 19
  • 35
44
votes
4 answers

Understand `rows-per-page-items` at Vuetify Data iterators + Data tables, can I set default page?

At Vuetify docs for Data Tables, and docs for Data Iterators I do not manage to understand the rows-per-page-items prop usage and its options, nor find any in-details explanation at any other place. Specifically, what I want to know is if one could…
Nati Mask
  • 676
  • 1
  • 5
  • 12
43
votes
2 answers

What is difference between v-app-bar and v-toolbar in vuetify?

I just started exploring vuetify. All the vuetify componets resides in . I wanted to create menu for my site so in documentation I found and I am confused that if I should keep menu items inside or…
Alok
  • 7,734
  • 8
  • 55
  • 100
43
votes
4 answers

Open link in new window with Vuetify v-btn and Vue router

Recent versions of Vue Router allow for links that open in a new tab, e.g. the following Link Text correctly renders an . However, the same doesn't seem to…
Andrew Mao
  • 35,740
  • 23
  • 143
  • 224
42
votes
6 answers

Typescript in vue - Property 'validate' does not exist on type 'Vue | Element | Vue[] | Element[]'.

I created v-form like this ... submit script: if (this.$refs.form.validate()) // Error is in here If i just…
Sam
  • 2,275
  • 9
  • 30
  • 53
42
votes
4 answers

vuetify center items into v-flex

I'm trying to center a into a . Since is a flexbox div, I use justify-center that is transformed into justify-content: center Since my direction is horizontal, my button should be center aligned but it's not. Here is the…
Titouan56
  • 6,932
  • 11
  • 37
  • 61
41
votes
3 answers

How can I add a click event to the v-data-table?

I want to call the editItem function when the table row is clicked. Current what happens is I click on the table row and it doesn't display the details page. Yet when I put this click event on a particular table data the editItem function gets…
Anjayluh
  • 1,647
  • 1
  • 13
  • 22
41
votes
5 answers

How to format Vuetify data table date column?

I have a simple data table using Vuetify data table. One of the column is a createdOn (date time), I want to format it. How can I do it ? This is what i get now: