14 questions
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 ...
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 ...
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 ...
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"&...
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 ...
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 ...
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 ...
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.
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 ...
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,...
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 ...
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 ...
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 ...
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 ...