108,152 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
34
views
Route Query Parameter not triggering re-render/logic on same page path
I'm new to Nuxt 3 (and Vue) and running into a issue with component reuse/caching in development mode. This problem never occurs when I build and preview the application.
The Problem
I'm using a ...
0
votes
0
answers
16
views
Library's global styles overriding scoped CSS layers
I am working on a Vue 3 project using SCSS and it's using Histoire to document its components. I just stumbled upon an irritating problem: the project uses layers on all classes to separate ui ...
-1
votes
0
answers
40
views
Nginx on Windows: "host not found in upstream ‘php-fpm:9000’" when using php-cgi.exe [closed]
I just installed the nginx and I set up conf like this:
events {
worker_connections 768;
}
http {
upstream php {
server php-fpm:9000;
}
sendfile on;
tcp_nopush on;
...
0
votes
2
answers
43
views
Auto fill OTP issue in chrome/IE/Firefox on Android device [closed]
I'm working on Vue2 project and using a custom OTP componet which is inside using input tag. On mounted life cycle method i'm inserting autocomplete="one-time-code"
on ios its auto filling ...
2
votes
1
answer
64
views
Custom pop up timer not working correctly
When socket messages come, I pop up divs in my page which disposes after 3 seconds themselves
<!-- I'm using vuejs -->
<div v-for='item in messageList'>
<!-- message body , -->
&...
0
votes
0
answers
38
views
better-auth: Unable to create schema for genericOauth with sqlite in nuxt
I'm setting up my nuxt project and I want to configure better-auth to use my companies Oauth2/OIDC provider to authenticate against with the genericOauth plugin. When running npx @better-auth/cli@...
0
votes
1
answer
29
views
Mocking Vitest functions for testing Pinia storage
I am struggling adding mocked methods when testing a Pinia store's functionality. There is very little documentation relating to actually testing the stores themselves, as most Pinia's official ...
1
vote
0
answers
39
views
Problem with frozen columns in Datatable component from PrimeVue library (gaps, shifting)
I have encountered a problem with the DataTable component from the Primevue library.
When I assign pagination to a table and set several frozen columns, if I switch the number of rows displayed in the ...
0
votes
1
answer
42
views
How can I customize style inside vu3Html2pdf?
How can I customize style inside vu3Html2pdf becuase when download it show incorrect template like blank at the 1 page and show my template at the second page.
It almost seems like it has padding or ...
0
votes
1
answer
44
views
How to show Laravel session flash messages in Vue component using Inertia?
I’m using Inertia.js with Vue 3, and I want to show a success message when a form is submitted successfully.
In my controller I have:
public function store(Request $request)
{
$validated = $...
0
votes
1
answer
50
views
How to use composable correctly - tree shaking
I'm learning about optimization and I've found that either I've misunderstood something or every article about Vue and the examples are basically wrong.
It's about bundle size and tree shaking.
When I ...
0
votes
0
answers
22
views
PrimeVue DataTable MultiSelect Filter Shows Incorrect Selected Count When Pre-selecting Values
I'm using PrimeVue DataTable with a MultiSelect filter on the "Project Status" column. I want to pre-select certain status values by default, but only those that actually exist in my data.
...
-1
votes
0
answers
51
views
How can I use a Wrapper Component with Playwright Component Testing?
I'm attempting to test some Vue 3 components using Playwright's component testing feature. My UI library requires that all components be wrapped in a BApp component for certain functionality to work. ...
-1
votes
0
answers
30
views
Vuetify 2 scrollable DataTable body while always showing pagination
I am using Vuetify 2's DataTable component. My table is scrollable, so I have to scroll all the way down to see the pagination area. How can I have only the table body be scrollable, while always ...
0
votes
1
answer
64
views
ref loses type information when passed from a composable in the context of a `v-model`
I'm using Vue 3.5.22 with the cool defineModel() macro. I'm editing in VSCode with the Volar extension and the latest TypeScript stuff. In my child component I declare a required model foo:
const foo =...