Questions tagged [vuetify2]
10 questions
2
votes
0 answers
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 event of the editable stepper-step with some event…
1
vote
1 answer
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:
Privileges: {{ privileges }}

Joe
- 1,033
- 1
- 16
- 39
0
votes
0 answers
vuetify 2 failed deploy to netlify via github
I'm trying to deploy my vuejs project to Netlify, but it never success
the error message :
Failed during stage 'building site': Build script returned non-zero exit code: 2
here the deploy log
4:12:42 PM: build-image version:…

Yuri
- 1
- 1
0
votes
0 answers
migration built vuejs with vuetify 2
I have problems with the migration built from vue2 to vue3 and I have 2 questions about.
I changed my Global API in main.js and now I use app.use instead of Vue.use.
With vue-router it works because I pass it to vue3 versions.
With Vuex it works…

Tommi
- 3
- 2
0
votes
0 answers
Vuetify v-data-table does hides rows on data refresh
I have a datatable that loads some json array after a file is added to a v-file-input. The v-data-table loads perfectly fine but if I close the v-drawer it sits in which has a close button that sets the v-data-table items prop (jsonData) to [] it…

Irish Redneck
- 983
- 7
- 32
0
votes
1 answer
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 the column that has its own filter, because that…

hobbes_child
- 131
- 2
- 12
0
votes
0 answers
how to display items as flex items inside a div Vuetify calendar events
I'm using Vuetify 2 calendar for displaying the monthly events
https://v2.vuetifyjs.com/en/components/calendars/
https://codepen.io/pen?&editors=101
After tweaking the css & html, this is how it is rendered in the DOM

Kgn-web
- 7,047
- 24
- 95
- 161
0
votes
0 answers
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 table.
for example, I wanna search x and y at the…

sanaz baghban
- 1
- 2
0
votes
0 answers
Ref's validation's result is different in mounted lifecycle hook
I have a componentized form where I have a different ref for each component and I need to validate these refs once the component is created. The problem is that during the created the refs are undefined and in the mounted the validation is giving an…
0
votes
1 answer
Passing dynamic values inside a regular expression statement is not working?
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 hardcode this maximum limit of 3 and use it like this…

Neha Soni
- 3,935
- 2
- 10
- 32