Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
26 views

how to prevent Vuetify's v-date-picker `type` from changing date format

I have a datepicker and I'm trying to restrict the selections between 'month' and date but when I switch the v-date-picker's type from 'date' to 'month', the date format changes from 2024-01-01 to ...
Clinton Njiru's user avatar
1 vote
1 answer
40 views

Vuetify2 grid layout [closed]

How would I implement the layout below in Vuetify2? The widths of C and D should be equal 50-50, regardless of content. The heights of A and B should wrap their contents. The height of C should ...
Software Dev's user avatar
  • 1,092
0 votes
1 answer
86 views

Vuetify Sparkline with long x-axis but keep height the same

Vuetify 2. I am trying to make a Sparkline with a very long x-axis, so I want it to have a horizontal scrollbar (otherwise the labels are unreadable). I also want it to be inside a Sheet (so that I ...
hobbes_child's user avatar
0 votes
0 answers
37 views

Vuetify 2: search bar doesn't filter database

I want to implement a basic search bar for a datatable and I implemented the way the documentation recommends, but it doesn't work. Any guesses on what I need to fix? <v-row class="ma-2"&...
Lady_Hangaku's user avatar
0 votes
1 answer
37 views

Vue2 doesn't see updates of object in expanded table vuetify

I have a problem with reactivity in Vue2 I have an array of objects in Vuex, which are displayed in v-data-table, inside each object I have an array that is filled with data when row expanded, I want ...
Maxim's user avatar
  • 29
0 votes
1 answer
517 views

Creating a currency mask in vuetify 2 and v-mask

I am currently using the cdn version of v-mask for my vuetify 2 project. I have been asked to add a currency mask since here in the United States we tend to use thousandth digit comma separation. I am ...
Qiuzman's user avatar
  • 1,643
0 votes
0 answers
92 views

Vuetify 2 and Vue-Router with ASP.NET Core MVC

I have been building out a vuetify 2 application with the vue cdn inside a ASP.NET Core MVC application. It has worked well and havent had to many issues with this approach and using the cdn hosted ...
Qiuzman's user avatar
  • 1,643
1 vote
0 answers
768 views

Is the any way to install Vuetify 2 on Vue 3?

I need to migrate a fairly large app from Vuetify2/Vue2 to Vuetify3/Vue3. It seems easier to me to migrate to Vue3 first, since now you can continue to use the Option API in Vue3.
khamaileon's user avatar
0 votes
1 answer
36 views

Vuetify 2 data table. Get row from given value

I'm using Vuetify 2 and I am trying to get the row values from a given value. I'm am using a barcode scanner as a keyboard input so I can change the packed quantity when the barcode is scanned. I am ...
Oeq06's user avatar
  • 11
1 vote
1 answer
96 views

Vue.js 2 v2.Vuetify get Value from checkboxes using bitwise AND

I have info about active modules stored in an int rather than in an array and use bitwise AND to show the active ones: <p>Privileges: {{ privileges }}</p> <v-checkbox v-for="(b,...
Joe's user avatar
  • 1,055
0 votes
1 answer
2k views

Vuetify table with column filter will not apply table filter to that column

I am using Vuetify 2. I have custom filters for both a table and one of its columns, like this https://codepen.io/hobbeschild/pen/zYJMjVY?editors=101 I cannot use the table search to find something in ...
hobbes_child's user avatar
0 votes
0 answers
80 views

Vuetify data table search by array instead of string

I'm using Vuetify data table and need to search in it. but the search in vuetify documentation is String. can I set the search to array? I wanna set filters and multiple data to search in the data ...
sanaz baghban's user avatar
0 votes
1 answer
141 views

Passing dynamic values inside a regular expression statement is not working? [duplicate]

I have a validation rule on an input field that allows a maximum of three words to be typed and I am using a regex rule (/^\s*(?:\S+(?:\s+\S+){0,2}\s*)?$/) to validate this. Now, I don't want to ...
Neha Soni's user avatar
  • 4,646
3 votes
1 answer
362 views

Editable vuetify stepper with validation

Is there any way to make an editable Vuetify stepper where I can make a validation that prevents the event of clicking on another step if the validation is incorrect? I tried to modify the default ...
Carlos Rolando Morell's user avatar