26,278 questions
0
votes
0
answers
22
views
How to override Layout.vue when extending the default theme in VuePress 2?
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), ...
1
vote
1
answer
72
views
Cannot build Vue app: "default" is not exported by @vue/[email protected]
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 --> ...
0
votes
0
answers
30
views
driverjs not keeping scroll position in Vuetify v-dialog
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. ...
1
vote
1
answer
50
views
Vue 2 + Composition API + vue-test-utils 1.3.6: `Cannot redefine property` and `setProps` doesn’t trigger `watchers`
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 ...
0
votes
0
answers
35
views
Reactivity issue with TRichSelect, it works but not when called by an internal function [duplicate]
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 ...
0
votes
1
answer
54
views
How do you handle assigning unique IDs to front end Vue elements for testing?
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 ...
0
votes
0
answers
37
views
Vue.js + Laravel session auth: "No token" error after login
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 ...
0
votes
0
answers
46
views
Moving an <iframe> between a Bootstrap modal and a div without reloading its content
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 ...
0
votes
0
answers
34
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
Regarding the issue of merging multiple Setups in vue
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: '...
0
votes
0
answers
31
views
Chunk file Issues when using load balancers and Webpack
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 ...
1
vote
0
answers
105
views
Tiptap Editor Not Rendering and Menus Not Functioning in Vue 2 + Docker Setup
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 ...
1
vote
2
answers
73
views
I keep getting a TypeError using the removeEventListener to remove window resize event
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("...
0
votes
0
answers
79
views
Media recorder API video chunk issue
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 ...
0
votes
0
answers
43
views
How to setup a singleton store/event bus for micro front ends monorepo with Vue2, Vuex, Vite?
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 ...