18,834 questions with no answers
0
votes
0
answers
50
views
Stock chart (Anychart) freezes UI when there are large gaps in timestamp between cluster of data points
I am having issues with anychart with vue.js where UI freezes with data points that are spaced by couple of milliseconds and sometimes there are larger gaps.
Using xScale('datetime') fixes this issue ...
0
votes
0
answers
39
views
How to correctly set up Pinia with Inertia.js SSR in AdonisJS 6? Getting "getActivePinia() was called but there was no active Pinia"
I am building an application using AdonisJS 6, Vue 3, and Inertia.js. I'm trying to integrate Pinia for state management, but I'm running into an error:
I read online and see other issues here, but I ...
1
vote
0
answers
44
views
How to create optional value with Tanstack form and Zod?
How to create optional value with Tanstack form and Zod?
<script setup lang="ts">
import { useI18n } from 'vue-i18n';
import { z } from 'zod';
import { revalidateLogic, ...
0
votes
0
answers
87
views
MonacoEditor - Web Worker can't be created
I use https://nuxt.com/modules/nuxt-monaco-editor. I get this error and don't really know what to do against it:
Could not create web worker(s).
Falling back to loading web worker code in main thread,...
0
votes
0
answers
33
views
How can I dynamically scale and fit two ScrollPanels to the screen size on the same page
I have two ScrollPanels side by side, but the width and height numbers don’t make sense to me. Also I can’t get the height to reach the bottom of the page depending on monitor size and system scale (...
1
vote
0
answers
56
views
Vue/Nuxt app loads slowly on client side -- how can I identify and fix performance issues?
I’m working on a Vue/Nuxt project where my client reports that the website is slow — especially when loading a selection window and when fetching JSON data.
However, the slowness is not very ...
2
votes
0
answers
100
views
Is it possible to retrieve lists of HDF5 file, group, dataset, and attribute in Golang
I'm currently working on developing data reading and writing for HDF5 files in Golang. I've consulted the library documentation and managed to successfully implement writing operations. Now, I need to ...
0
votes
0
answers
39
views
Horizontal scrolling on v-calendar
my vue site is simple as hell I think
<template>
<v-calendar
type="category"
v-model="focus"
:categories="categories"
:events="events"...
1
vote
0
answers
65
views
Error: Module '"vue"' has no exported member 'ref', 'computed'. etc
Does anyone experience this issue? I have laravel + vue 3 project and I recently use typescript. I installed these,
"typescript": "^5.9.3",
"vue-tsc": "^2.2.12"
...
0
votes
0
answers
40
views
PrimeVue DataTable not responsive?
I have the follwing:
<Panel header="SITE MANAGEMENT">
<template #icons>
<Button severity="secondary" rounded text @click="showAddNewModal = true"&...
3
votes
0
answers
183
views
How can I use fallthrough attributes with `strictTemplates: true` in Vue.js?
I am using Vue.js 3 with single-file components, <script setup> and TypeScript. I would like TypeScript to report when I use an unknown component, an unknown directive or an unknown prop. It ...
1
vote
0
answers
97
views
Custom Dynamic List freezes after binding array and expanding rows to match length
I want to create a custom dynamic list component based on GrapesJS (with 3 rows by default). It can bind to an array variable and dynamically change the number of rows in the container according to ...
0
votes
0
answers
30
views
ioredis not catching ERROR [ioredis] Unhandled error event: Error: read ECONNRESET
I have a Vue+Nuxt app that uses Redis as cache. It's is setup in the following files.
server/plugins/redis.js
import redis from "unstorage/drivers/redis";
import Redis from 'ioredis';
...
2
votes
0
answers
67
views
Forge Viewer offline in Vue/Vite (iOS WebView) – call function across files without import/window/globalThis
We are building an offline Forge Viewer project using Vue + Vite, which will later be wrapped in an iOS app (Capacitor).
In offline mode, we need to serve model files and translations from a local ...
0
votes
0
answers
289
views
Validation problem with Zod Resolver using PrimeVue forms
I'm having somewhat of an issue using Zod form resolver.
Using PrimeVue forms, I have validate-on-value-update activated:
<Form
v-slot="$form"
:initial-values="form.data()"...
0
votes
0
answers
67
views
Can't resolve 'child_process', 'dgram', 'tls' in vue-cli library
When i do npm run serve i get multiple resolve errors:
More than 10 messages about can't resolve something of this ('child_process', 'dgram', 'tls') in @vue/cli-shared-utils.
My settings:
package.json:...
0
votes
0
answers
62
views
Parsley.js custom validator not working while built-in validators do
I’m working on a Laravel + Vue project and using Parsley.js for form validation.
Parsley works fine for the built-in validators like data-parsley-required, data-parsley-pattern, and data-parsley-type....
1
vote
0
answers
50
views
How do you implement pdf.js in a vuejs application with web workers and standard fonts
I have created the following pdf.js viewer in a vuejs application with search and page capabilities and it works but triggers tons of warnings when doing so. I also notice when I deploy to production ...
4
votes
0
answers
235
views
Uncaught SyntaxError: Identifier 'validate' has already been declared in .nuxt/middleware.mjs
I'm working on a Nuxt 4 project and sometimes, after I update a file, J got the following error in the browser console:
Uncaught (in promise) SyntaxError: Identifier 'validate' has already been ...
0
votes
0
answers
30
views
Can we make a vertical InputGroup in PrimeVue?
PrimeVue offers a convenient way to work with an InputGroup, like:
<InputGroup>
<InputGroupAddon>
<i class="pi pi-user"></i>
</InputGroupAddon>
...
3
votes
0
answers
153
views
Laravel 12 Vue starter kit vite build error
After running the larael new command using the vue starter kit, I get the following:
failed to load config from C: \Users\rober\MyDocuments\www\tutorials\test123\vite.config.ts
error ...
0
votes
0
answers
87
views
Stuck on callback URL after Google login in WebView; authentication does not redirect
I'm integrating Google login in my web/Vue.js application. I'm using the API to handle authentication. Everything works up to the point where the user is authenticated: in my handleGoogleCallback ...
1
vote
0
answers
49
views
How to make WebStorm auto-import Vuetify types from vuetify/framework instead of internal vuetify/lib/components/*
I’m working on a Vuetify 3 + Vite + TypeScript project in WebStorm.
When I auto-import Vuetify types (e.g. SortItem from the data table), WebStorm generates this import:
import type { SortItem } from &...
1
vote
0
answers
84
views
ESLint configs error Parsing error: Invalid ecmaVersion
I'm writing a shared ESLint configuration for my own project.
One of the configurations for the JS project is:
import js from '@eslint/js';
import { defineConfig } from 'eslint/config';
import ...
0
votes
0
answers
89
views
Why with local storage would email be undefined
I'm configuring Entra OIDC for my team and have run into the issue where the company email only populates in my user store with sessionStorage as my cacheLocation, but not with localStorage. I would ...