All Questions
205 questions
-3
votes
1
answer
55
views
how can i remove percentage from vue url
How do I remove the % from my URL ?
This what my url:
http://localhost:8080/product/We-Vibe%2520Sync%2520O%2520Remote%2520and%2520App%2520Controlled%2520Rechargeable%2520latern's
When I call this
...
-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 "...
1
vote
1
answer
37
views
Declaring object.prototype in js - VueRouter it automatically calls a method
I declared an extension method for objects by creating my own function. However, I do not call or import it anywhere. As a result, I get an exception. How can I fix this? I don't recall such behavior ...
0
votes
1
answer
93
views
migrating from vue 2 to vue 3 vue-svgicon
I have to migrate an application that use vue2 (2.6.10) to the last version of vue 3; I'm also do not have many experince on frontend development;
I have create the project with
npm init vue@3
I have ...
1
vote
0
answers
36
views
Translate emit intercept in plugin from vuejs 2 to 3
I'm slowly marching a project from vuejs 2 to 3, keeping with the Options API for now. The previous developer created a plugin that intercepted all emits so they could be logged every time an emit was ...
1
vote
0
answers
271
views
Error : "Maximum call stack size exceeded" using Vue.js and Leaflet
I am using Vue.js and Vue Leaflet.
Markers coordinates are updated every few second with an API call.
I would like to add a feature to follow a specific Marker, I try using the max-bounds parameter.
...
0
votes
0
answers
71
views
Vue.js - Issue with Menu Component and Event Handling
I'm currently working on a Vue.js project and have encountered an issue with a custom menu component. The menu is supposed to handle sorting types, and I'm using it in conjunction with a method (...
2
votes
1
answer
646
views
Vuejs 3 how to get component instance properties programmatically
I have function which is written in vue 2 and I need to modifiy for vue 3. there is component named Modal which is a confirmation box with lots of props and option. in codebase it call showPrompt ...
2
votes
0
answers
257
views
Vue.draggable Drag and Drop Outside to a div
I am creating a Kanban board task viewer. In this kanban, I have many tasks and a date. I can drag and drop this into a group. I have a div outside of the draggable component. When I drag a task item ...
0
votes
3
answers
100
views
display info of event target is ko
I have a button with id & name that I wanted to display their value but in my code nothing is displayed.
what is wrong with it ?
<v-btn id="mytest" name="test" @click=&...
0
votes
0
answers
118
views
Vue 3 merging proxy objects refs
I tried merging the child refs with my parent refs. This worked previously in Vue 2, but now that I'm migrating to Vue 3, I'm encountering an error with the $set refs. However, $refs is dynamic and ...
0
votes
1
answer
2k
views
Vue 3 v-model binding on a nested input component
I'm trying to migrate my components in Vue 3. I find it confusing on how to set the V-model especially on a nested component. Initially, the checkbox should not be checked since I'm retrieving a value ...
0
votes
1
answer
185
views
How to force toggle button to be toggled off?
I am using vue3 with options api
for the code contained in the following stackbiltz code is here.
I have a toggle-button and I want to set it to be toggled off automatically after 3 seconds. To ...
0
votes
0
answers
732
views
VueJS 2 to VueJS 3 migration error: (deprecation GLOBAL_MOUNT)
I am seeing the error:
[Vue warn]: (deprecation GLOBAL_MOUNT) The global app bootstrapping API has changed: vm.$mount() and the "el" option have been removed. Use createApp(...
1
vote
1
answer
303
views
Converting Vue 2 javascript to Vue 3 Typescript code
I am working on a vue 3(typescript) code project. I have one small piece of code which is of vue 2 javascript. Can anyone help me in converting the below code from vue 2 to vue 3 typescript:
<...