All Questions
1,215 questions
-1
votes
1
answer
51
views
how to make the render on vue2 equals to the render on vue3
I have the same code, but if I run it on vue2/vuetify2 the render will be:
If I run it on vue3/vuetify3 I get:
The color is not black anymore, "informativa privacy" is red and the "...
0
votes
1
answer
39
views
How can I set v-data-table height to 100% when it is placed inside a flex container?
I have a component which renders a v-data-table
<!-- UsersDataTable.vue -->
<template>
<div>
<DataTable v-bind="$attrs" :headers="headers" hide-default-...
0
votes
1
answer
44
views
Typescript tsconfig ignored
I am getting a typescript error that shouldn't happen because the tsconfig should prevent it from being compiled. In my tsconfig file I have skipLibCheck set to true. I have the node_modules folder ...
1
vote
0
answers
57
views
Change to CSS opacity not working in production
I’m using vue 2 and vuetify 2 but I have a little problem using a v-hover component from vuetify, everything is working great except that v-hover only works local and when I try it in production (...
0
votes
1
answer
94
views
How can I position a button at the bottom right corner of its scrollable container? (wrapper div cannot be used)
I have following code
<v-card-text
style="min-height: 700px"
class="px-6 py-4"
>
<v-row no-gutters>
<v-col>
<div
v-for="(log, i) ...
0
votes
1
answer
398
views
Vue2 and Vue3 on the same web page
For a very niche and specific reason I need both major versions of VueJS (2 & 3) to run concurrently on the same web page and each run their own plugins independently of each other. This will all ...
0
votes
0
answers
28
views
Issue using vuetify's v-toolbar component in native dialogs
I maintain a vuejs2 / vuetify 2 project that can't be updated for current versions due to large codebase, and also I'm slowly migrating this project's dialogs for a native HTML implementation, I feel ...
0
votes
1
answer
41
views
Navigation Drawer opens unwanted
I am new to Vue 2 and trying to figure out why the navigation-drawer acting like it does. The following codepen contains a small nav. Which can be open and closed with the chevron icons. Which is ...
0
votes
1
answer
173
views
Vuetify 2 x Vue.js 2 - cannot show the expected value inputted in the text field
I have textfield that has auto word. This means that any letters or characters inputted in the textfield will automatically replaced.
As see in the textfield, you cannot freely type whatever the word ...
0
votes
2
answers
34
views
I have created a Img component using Vue Js. but Img is not showing
I have created a Img component using Vue Js. and the component is passed to the header file which is in the same directory, the Img component contains a parent div. when i passed the Img component to ...
0
votes
1
answer
71
views
getting the list of values shown in the currently displayed v-data-table page
I'm using a v-data-table in vuejs2 with multiple pages of users in my project, showing their info a in set of columns (25 users are shown per page, with a total of 60 000+ users). I'd like to get the ...
0
votes
1
answer
91
views
Remove item from object then save it
I will try to explain this as best as I can.
I have a select in my form which the user can chose between multiple contracts, once he choses one of them, I want to remove items from the selected ...
0
votes
2
answers
121
views
Vue.js: How to convert an array to object?
In Vue.js: How do I convert an array to an object? I wanted to get name value only "Willy" from the array.
Array data from LocalStorage:
[{"id":"56b5","name":&...
0
votes
1
answer
135
views
Vuetify 2 autocomplete - Search entire name by first and last
I am using autocomplete component from vuetify 2
My application is returning an array of full names, like:
['André Ramalho Rodrigues', 'Joaquim de Almeida', 'Filipe Joaquim Almeida']
The autocomplete ...
0
votes
0
answers
85
views
Vuetify VDatePicker menu bug
I have a project (vue2 + vuetify2) with a component v date picker, which attribute active picker = "YEAR" and a list of years from 2000 to 2100, the problem is that sometimes the component ...