108,316 questions
0
votes
0
answers
15
views
Unable to properly set zoom level on different devices via OpenLayers
I have tried everything and can't seem to figure out how to properly set the zoom levels differently on map initialization and load for different devices. The goal is to have the "United States&...
0
votes
0
answers
20
views
Dynamic Alias Configuration in Quasar/Vite's extendViteConf Fails with Environment Variables
I'm working on a Quasar (v2) project using Vite (quasar cli) as the build tool, and I need to deploy multiple instances of nearly the same web application, each with different assets, images mostly. ...
1
vote
1
answer
16
views
Vuetify when dialog opened from menu item. Dialog opened, but menu still appear
<template>
<v-menu>
<template v-slot:activator="{ props }">
<v-btn color="primary" v-bind="props"> Activator slot </v-btn>
&...
0
votes
0
answers
24
views
How to use typescript transformers on vue files
I use plugins to generate objects from types in my quasar project. They work fine, but only on ts files. All files with vue extension don't come to plugin's input. I understand that they have to be ...
0
votes
0
answers
37
views
Why my input validation function and mask for it are not working?
I have a problem. There is a parent component Form/index.vue , which contains an input for a phone number, it is linked to v-model. But for some reason, validating the mask using a function in the ...
0
votes
0
answers
16
views
Erro: nodeJS - Empty Callback=undefined or baseUrl=http://localhost:8080 - Onlyoffice document server with Vue.js 2 + TS
I am working with ONLYOFFICE Document Server running in a Docker container. My frontend and backend are running on my local machine. However, when trying to save a document via the ONLYOFFICE editor, ...
0
votes
0
answers
26
views
Vuetify text-area scroll not working when placed inside slot of custom component
My project uses Vue 3 (w/ Composition API) and Vuetify. I'm trying to create a custom container component that essentially adds a title bar to its content. This is the custom component:
// ...
0
votes
0
answers
27
views
How to disable autocomplete on Vuetify v-text-field with type "password"?
I'm using Vuetify's v-text-field component, and I need to disable the autocomplete functionality for a password input. Here's the code I have:
<v-text-field
v-model="password"
label=&...
0
votes
0
answers
24
views
how to vuefity3 migration
I’m upgrading my Vue.js project from Vuetify 2 to Vuetify 3 (on Vue 3). Before, I had a global CSS file full of overrides targeting Vuetify 2 class names.
After switching to Vuetify 3, none of these ...
0
votes
0
answers
31
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
79
views
How do I create a production version of vue + laravel?
How can I create a production version of a Laravel application?
There is vite.config
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import vue from '@vitejs/plugin-vue'...
-1
votes
0
answers
42
views
cy.intercept does not catch POST request (alias not triggered, timeout)
I'm trying to intercept a POST request to my backend API using cy.intercept(), but the alias is never triggered — even though Cypress detects the route match in the DevTools.
Context:
Frontend: Vue 3 ...
-1
votes
0
answers
36
views
when to use vi.hoisted
I got two difference cases when using vitest to write mocks:
case 1:
const mockedMethod = vi.fn();
vi.mock('./path/to/module.js', () => ({
originalMethod: mockedMethod,
}));
case 2:
const ...
1
vote
2
answers
52
views
How to correctly configure tailwindcss with nuxt3 and apply styles to content?
I have installed TailwindCSS v4 in a Nuxt.js project following this:
https://tailwindcss.com/docs/installation/framework-guides/nuxt
And added nuxt-content which works fine. But I'm struggling to ...
-1
votes
0
answers
23
views
Select nodes with empty children array in v-TreeView
I am using load-children property & setting children array to required array only when drop down is clicked. Using this because TreeView is breaking when large data is passed. But when I click a ...