All Questions
24 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
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 ...
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
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
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":&...
1
vote
1
answer
572
views
Vuetify 3 select component placeholder is behaving differently as compare to Vuetify 2
In Vuetify 3, Passing a value in v-model which is not available in the items array, is displaying the value in v-select. Ideally if value is not valid, It should display the placeholder text. This is ...
0
votes
3
answers
315
views
Dynamically fetch data in parent component when new data is added in child component in Vue without using watcher
Is there any way in Vue to display the data when it is updated other than using watcher ? Just like we have useEffect in React which renders when the data is changed, is there anyway we can do ...
3
votes
0
answers
407
views
vee validate with custom input component, global configurations not work
Use package vee validate version 4 with vuetify
It comes with its own components such as
{ Form, Field, ErrorMessage }
They work well when you use them
<template>
<Form @submit="...
1
vote
1
answer
273
views
what is the purpose of scoped slots in vuetify
as far as I searched & learned, Slots permit to a parent component to inject content into a child component.
however I came accros an example using vuetify using scoped slot
<template slot=&...
3
votes
0
answers
2k
views
Vue 2 to Vue 3 migration (Vuetify 2 to Vuetify 3)
I need some general advice on migration.
This is my 1st time working doing a migration and working with webpack.
This my package.json. Do you think it's possible/ worth it to migrate to Vue 3 / ...
-1
votes
2
answers
970
views
Replacement for Vue 2 'v-on' in Vue 3
I am migrating a Laravel Vue2 & Vuetify2 project to Laravel Vue3/Vuetify3.
I know that v-on has been removed. In the Vue2 project, I used the following code to display a tooltip for <v-btn>
...
0
votes
2
answers
2k
views
V-data-table workaround from Vuetify
I'm upgrading an app from vue2 to vue3, same goes for vuetify (2 to 3).
Problem is that Vuetify 3's documentation is incomplete. Specifically Vue Data Tables. :(
The App I'm working with is full of v-...
0
votes
1
answer
135
views
Opening a modal component with a button in another ccomponent using Vuetify
I have 2 components. Modal and Navbar. I'm trying to open Modal using a button in Navbar using vuex. I have a state called modalIsOpen. This states value changes from false to true when clicked on the ...
0
votes
0
answers
30
views
I can not open a spesific vue project on Control panel either VS code
i try to open a vue project already exist but i can't do this. I already try npm commands like npm install, npm run serve, npm build, but still doesn't work. Can you help me?
This is error screen on ...
1
vote
1
answer
263
views
How to handle a lot of data fetching from API
I am a beginner. I am trying to get data from an API and list them by using v-for. But It is causing a lag. My app is freezing when data comes or when I search for something on my list.
This part of ...