447 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-2
votes
1
answer
59
views
Where can I find the types of Vuetify components’ events and props?
I'm using v-data-table-server component, but can't find some types for events or props. For instance, I need the type of object that @update:options returns. In the relevant section of Vuetify docs, ...
0
votes
1
answer
113
views
How can I make selection slot work in Vue 3
In the following code snippet, using Vuetify 3, migrated from Vue 2 and Vuetify 2, the selection slot shows only "undefined" values, whereas the item slot is working fine. The item has a raw ...
1
vote
3
answers
112
views
How to import Vuetify icons correctly?
Not all icons from vuetify are rendering in my jsonForms component
I'm creating Vue component, that render jsonForms with vuetifyRenderers from '@jsonforms/vue-vuetify' and this part is ok. But ...
0
votes
0
answers
74
views
Limit visible items in v-autocomplete
I'm working with a component that receives a large array (around 6000 items), but I want to limit how many of those items are actually rendered, ideally just 10 or 20.
Is there a prop or built-in way ...
0
votes
0
answers
64
views
Which is the recommended way to import Vuetify Types and Interfaces?
I have following code
<script setup lang="ts">
// Imports...
const btnProps = {
color: 'primary',
variant: 'outlined',
...
}
</script>
To avoid TS complaints I have to ...
0
votes
0
answers
39
views
How to show the max number next to input for a v-number counter
I am creating a pdf viewer and want to allow the user to select the page number in a v-text-field and I would like to show the total page count next to the input so that they type in 1 but in reality ...
1
vote
2
answers
111
views
Why is my menu item passing the wrong prop to my dialog?
I am constructing a demo to illustrate the ways you can invoke dialogs in Vuetify3 so that I can learn these techniques myself. (I'm thinking of publishing this to GitHub if it all works out so that ...
1
vote
0
answers
37
views
Slot "default" invoked outside of the render function: this will not track dependencies used in the slot
Error and stack trace
app.js:73 [Vue warn]: Slot "default" invoked outside of the render function: this will not track dependencies used in the slot. Invoke the slot function inside the ...
0
votes
0
answers
30
views
Vuetify format date in v-date-table
I'm trying to format a date from 'YYYY/MM/DD' to 'DD/MM/YYYY' in a v-date-table using a template
<template v-slot:[`item.project_target_date`]="{ item }">
{{ item....
1
vote
1
answer
44
views
Vuetify when dialog opened from menu item. Dialog opened, but menu still appear
<template>
<v-menu>
<template v-slot:activator="{ props }">
<v-btn color="primary" v-bind="props"> Activator slot </v-btn>
&...
0
votes
0
answers
88
views
How to disable autocomplete on Vuetify v-text-field with type "password"?
I'm using Vuetify's v-text-field component, and I need to disable the autocomplete functionality for a password input. Here's the code I have:
<v-text-field
v-model="password"
label=&...
0
votes
1
answer
27
views
How to show unique data between two v-combobox
Right now I am using Vuetify 3 data table and v-combobox. In the data table I have two v-combobox who use same data for display and multiple select. Now what I want is when I select a value in the ...
0
votes
0
answers
20
views
Is there a way to show a row of data under two different groups in Vuetify 3 v-data-table
I have a list of permissions that are grouped in a v-data-table, by a string field on them named permission_group. I recently felt the need to show a permission under two different groups, given that ...
0
votes
1
answer
62
views
Unable to link woff2 font file into a vscode extension whose frontend is based on vuetify 3
I have created a vuetify(3.8.1) based frontend and built it using vite build. Then included the files in dist folder in a new project where extension code exists. file structure has dist/assets then ...
1
vote
1
answer
71
views
Vuetify v-select with search input changes the selected values
I'm using vuetify 3+ and I'm trying to add a text input so I can search the elements passed in to the v-select component. The problem is that when I do a search, and change the items props input ...