Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
29 views

I'm working with VuePress 2 and want to customize the main layout of my site. I understand that when you extend the default theme (using extends: defaultTheme(options) in .vuepress/theme/index.js), ...
magicfarm's user avatar
1 vote
1 answer
90 views

Background We are trying to migrate a Dockerized Vue 2/Vite app to Vue 3/Vite and have upgraded (among other packages): @vitejs/plugin-vue2 2.3.3 --> @vitejs/plugin-vue 6.0.1 buefy 0.9.29 --> ...
anti-destin's user avatar
0 votes
0 answers
39 views

I have a Vue 2 project where I’m using both Vuetify and Driver.js. On one page, a v-dialog opens and I use the scrollable attribute. Since the dialog content is very long, it becomes scrollable. ...
Erdem Çağlak's user avatar
1 vote
1 answer
58 views

Problem: I’m migrating a Vue 2.6 app to the Composition API (via the plugin) and hit two testing issues with vue-test-utils (v1) + Jest: Jest couldn’t mock functions from a plain TS module (not a Vue ...
Makc's user avatar
  • 1,192
0 votes
0 answers
36 views

I am using Vue 2 in my application, and the TRichSelect component from the VueTailwind library is not reactive when I populate the v-model variable through an internal function. It works correctly ...
Eriberto Zaccara's user avatar
0 votes
1 answer
63 views

We want to assign UUIDs to our front end Vue user-interactable elements (inputs, buttons, links, dropdowns, etc) for our automated testing. We want to structure this in a way that allows common ...
dtthom09's user avatar
  • 297
0 votes
0 answers
39 views

I updated laravel app from php@7 to php@8 and login doesn't works anymore. admin panel using Vue.js (vue2) as SPA (with VueRouter, Vuex, etc.) and Laravel as backend using session-based authentication ...
JeRmiZa's user avatar
0 votes
0 answers
52 views

Tech Stack: Laravel 8 Blade templates Vue 2 application mounted inside the Blade file Bootstrap 5 modal jQuery Problem I have a chat assistant third party web url in a Vue-based environment that ...
Prabath Abeysinghe's user avatar
0 votes
0 answers
39 views

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 ...
Nadan Marenković's user avatar
0 votes
0 answers
60 views

In vue2, when other developers have already written a setup and I define another setup in the mixin, an error will occur at this moment. import mixinFile from './mixinFile' export default { nane: '...
jinmokai's user avatar
0 votes
0 answers
36 views

I'll share my whole webpack.config.js file shortly, my issue is this: We have a server and a mirror server that serves as a load balancer, in both servers we run npm run production to compile the code ...
Santiago Cuartas Arango's user avatar
1 vote
0 answers
119 views

I am using the Tiptap editor in my Vue 2 project, but the editor is not visible in the browser. When I highlight text, the bubble menu doesn't appear, and when I move the cursor to the next line, the ...
Vijenthiran Vimal's user avatar
1 vote
2 answers
83 views

I'm developing a function that adjusts the display content along with the window resize. I have the following code to add window resize listener mounted() { ... window.addEventListener("...
EndlessDev-BBQ's user avatar
0 votes
0 answers
87 views

I have a Vue JS2 app that uses MediaRecorder API for creating a Blob for video. The basic functionality I have is record a video. user can pause a video and on pause user can delete the last recorded ...
Darshan Soni's user avatar
0 votes
0 answers
54 views

I have this structure which every feature will be treated as a mini app, they will be bundle as separated scripts (based on vite-feature.config) to ready for load as needed on an external app. They ...
JM Lee's user avatar
  • 1
1 vote
1 answer
93 views

For my assignment, I need to create a feature where people can add different movies to a watch later section. For this, we are only allowed to use Brython, HTML, CSS, and Vue(I believe our lecturer ...
user25306805's user avatar
-3 votes
1 answer
77 views

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 ...
jibzy's user avatar
  • 547
2 votes
1 answer
64 views

I am using .net7.0 web app where js are added like bellow, I can use bar chart but I need gauge chart and when I am changing the type getting this error in the console, it says import { GaugeChart }, ...
Sargis's user avatar
  • 167
-1 votes
1 answer
64 views

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 "...
fraaanz's user avatar
  • 95
0 votes
1 answer
73 views

I have a component which renders a v-data-table <!-- UsersDataTable.vue --> <template> <div> <DataTable v-bind="$attrs" :headers="headers" hide-default-...
PyKKe's user avatar
  • 457
0 votes
1 answer
168 views

I'm using vue-apexcharts wrapper (tried both 1.6.x and 1.7.0 versions) and apexcharts 4.4.0 / 4.5.0 (also tried both versions). I was able to do extensive customizations to chart visuals, but I'm ...
Bruno Lamps's user avatar
0 votes
1 answer
61 views

I have a basic question related to argument of a function. when emitting an event from a child to a parent or when triggering a click event, I've seen in somme cases the add of $event as a parameter ...
ftouh yaham's user avatar
0 votes
1 answer
66 views

I am currently working with vue 2 and am finding a way to access parent component prop data within a slotted component <template> <div class="grid-container"> <div ...
Javier Tan's user avatar
0 votes
0 answers
73 views

I am generating the sitemap dynamically, using the server/api/sitemap/urls.ts, and locally, when build and running node, the sitemap works as it should, fetching everything from the CMS. The problem ...
Carlos Pinto Guedes's user avatar
0 votes
1 answer
66 views

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 ...
SChristiansen's user avatar
1 vote
0 answers
74 views

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 (...
melvswrld's user avatar
1 vote
1 answer
50 views

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 ...
padavan's user avatar
  • 929
0 votes
1 answer
70 views

I have a text box in Vue 2 application and I am using the v-mask library to format phone numbers as the user types them. The problem I want them to be formatted as per Japanese phone number format ...
deekeh's user avatar
  • 790
1 vote
1 answer
32 views

I am facing this error when serializing a selection using Rangy. I am running version 1.3.2 of Rangy and I am selecting text from the dom level. Has anyone come across this issue? I traced it deeper ...
pumpkin's user avatar
  • 566
0 votes
0 answers
26 views

I have a React app that renders Vue routes and React routes. All works fine, however, for one specific use case I am mounting a react app inside a Vue app. ReactParent -> Vue -> ReactChild. The ...
Lek's user avatar
  • 137
1 vote
1 answer
140 views

EDIT01: I'm using "nuxt": "^2.16.0" with "@nuxtjs/composition-api": "^0.29.2". I'm have been trying for days to figure this out but still dealing with this ...
Lowtrux's user avatar
  • 208
0 votes
0 answers
43 views

I'm using the vue-html2pdf library to generate PDFs from dynamic data in my Vue.js application. I'm trying to control page breaks within the PDF, especially for a grid layout where each item is ...
Noobx Gamer's user avatar
0 votes
1 answer
132 views

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 ...
fraaanz's user avatar
  • 95
0 votes
0 answers
54 views

I can't tell the difference between these two forms of event broadcasting. `this.$emit('newComment', this.commentId);` `this.$root.$emit('newComment', this.commentId);` when should I use one ...
abs hwiw's user avatar
1 vote
1 answer
58 views

In Vue.js, when I try to download an image, it just opens in the browser instead of downloading. The same code works in plain JavaScript. What's wrong here: export const downloadPNG = (url: String) =&...
Mike's user avatar
  • 11
0 votes
1 answer
143 views

I am trying to implement a login using the azure-msal-browser package in a Vue2 application. I am struggling to get it running even after checking a couple of different tutorials. My plan is as ...
J-H's user avatar
  • 1,901
0 votes
0 answers
86 views

we're using VueX 3.6 with Vue 2.7. The project is old We can't go to Vue3. For new components, we're trying to use script/setup for new components. How to use VueX mapper functions in this situation? ...
Md. A. Apu's user avatar
  • 1,318
0 votes
1 answer
73 views

I am migrating my project to Vue3. I am getting the following error when I try to run unit tests with yarn jest Test suite failed to run Cannot find module 'vuetify/components' from 'src/plugins/...
Abdulkadir Dalga's user avatar
1 vote
0 answers
23 views

I am trying to add 'fill-extrusion' with different colors to the map multiple times. First, I attempted to add a layer each time: Vue.prototype.drawPolygonTest = function (map, data, color = '') { ...
enen's user avatar
  • 11
0 votes
1 answer
79 views

I generated a new project using vue 2, then I wanted to apply local registration, but I"m getting compile errors the following shows the changes files: main.js import Vue from 'vue' import ...
nidhou gsm's user avatar
0 votes
1 answer
229 views

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) ...
PyKKe's user avatar
  • 457
1 vote
1 answer
1k views

I realize similar questions have been asked before about this warning, but none of the proposed solutions have solved this issue for me, or been applicable in my scenario. I have recently upgraded ...
LiteralMetaphore's user avatar
0 votes
0 answers
188 views

I am using Vue 2.6 with @shentao/vue-multiselect version 2.1.6. I've created a reusable component where I bind all props and events to the multiselect component. Here's my code: Here is the component: ...
oguzcan's user avatar
  • 57
1 vote
1 answer
48 views

I have a problem with an application working on Vue2.js with vee-validation package. Here is the link to the app : https://codepen.io/EnjoyMachine/pen/ogvbZgO // find the code in the codepen link As ...
Rémy's user avatar
  • 948
0 votes
0 answers
37 views

when trying to register a new user with a specific role I get too many recursion errors main.js import Vue from 'vue' import App from './App.vue' import router from './router' import store from './...
user2717927's user avatar
1 vote
0 answers
100 views

I am trying to install Vue dependencies globally on my machine instead of relying on a local setup. My goal is to manually install only the necessary modules globally. However, I am struggling to ...
user21742825's user avatar
0 votes
0 answers
22 views

Describe the bug When using the Translation tab in multiple pages mode, with the "Used Strings Only" filter enabled, scrolling down the list of translation items often gets stuck before ...
Johan Rm's user avatar
  • 161
1 vote
1 answer
99 views

If I inspect a computed property in Vue 2.7, I can see that, besides the well-known .value property, there's also .effect. I wasn't able to find any information about it, except that it's deprecated ...
Lazouski's user avatar
  • 101
0 votes
1 answer
305 views

I am currently trying to migrate from Vue2 to Vue3 using migration build. When I try to build the project, the following error occurs: Syntax Error: TypeError: Cannot read properties of undefined (...
Rae's user avatar
  • 15
0 votes
1 answer
98 views

I work with vue.js (version 2) and I have a translation block in every vue file like this: abc.vue <i18n> { "fr": { "settings": "Conf" }, &...
ERV's user avatar
  • 69

1
2 3 4 5
526