9,319 questions
0
votes
0
answers
24
views
Devextreme Charts Vue 2 events not working
I have an app built with ASP.NET Core and Vue 2 and I'm using DevExtreme Charts. The charts are rendering fine, I have no errors inside the console, but I have issue with
Hovering over legend
...
0
votes
0
answers
51
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 ...
-1
votes
0
answers
55
views
On a 2k resolution screen, the drop-down menu of the vuetify menu component is misaligned
My program runs perfectly fine on a normal 1k (1920 x 1080) screen, but my users have reported issues on 2k (2560 x 1440) screens: the positioning of the drop-down menus in the navigation bar at the ...
2
votes
1
answer
113
views
Wrapping of a vuetify component in vue.js 3 type safely
The wrapper component pattern is quite difficult implement in vue.js with Typescript.
To begin with it's difficult to extract the typings for the props, the emits and the slots: especially with ...
0
votes
1
answer
48
views
Vuetify buttons have a tint to their background color for unknown reason
I have a nuxt3 app using vuetify and I'm running into this issue where some of my buttons have this tint that I can't seem to get rid of. I have an app bar at the top of the screen with buttons that ...
0
votes
1
answer
27
views
The name of vuetify VListGroup in Trame
I'm making a menu with submenus in Python Trame. Here is a working example:
from trame.app import get_server
from trame.ui.vuetify import SinglePageWithDrawerLayout
from trame.widgets import vuetify
...
1
vote
2
answers
93
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
23
views
How to change vuetify widget params in Trame Python
I'm truing to make a simple GUI with Trame. And finally managed to make 'File' menu items.
from trame.app import get_server
from trame.ui.vuetify import SinglePageLayout
from trame.widgets import ...
0
votes
0
answers
45
views
How to display an image in a GUI using Trame, Vuetify
I am new to Trame and Vuetify. I need to show an image in the GUI. The GUI would run on a localhost. My MWE is given below:
from trame.app import get_server
from trame.widgets import html, vuetify, ...
1
vote
1
answer
36
views
Vuetify data table pagination icons don't appear
I'm using Vuetify for the first time and I have troubles using the data-table component. I've figured most of my issues out but the pagination icons still don't appear. The buttons are here and ...
0
votes
1
answer
41
views
v-data-table sorting, capture and control current sorting criteria
Vue 3.5.13, Vuetify 3.8.5
I display a data table, allowing the user to use multi-sorting, so that they can sort by various combinations of columns. Under some circumstances I want to show the data is ...
0
votes
0
answers
141
views
Failed to resolve Vuetify component imports in Nuxt 3.17.2
I'm getting the following error when running my Nuxt application (version 3.16.0+):
[plugin:vite:import-analysis] Failed to resolve import "vuetify/lib/components/VExpansionPanel" from "...
0
votes
0
answers
25
views
How to speed up all Vuetify 3 transitions?
I have a Vue.js application using Vuetify 3.8 and am trying to figure out how to speed up all the transitions. I cut and pasted CSS from vuetify.css to override the durations but that doesn't seem to ...
0
votes
0
answers
20
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....
0
votes
0
answers
21
views
How can I load Material Design Icons font files inside a Shadow Root when using WXT’s cssInjectionMode: 'ui'?
I’m building a browser extension with WXT and Vuetify, and I need to render components inside a Shadow Root.
In my content script I’ve set up:
import '@mdi/font/css/materialdesignicons.css'
import '...