Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
2 replies
31 views

New SPA frameworks like React, Angular, Vue etc. Requires running node js server. But is there any way to run "output" (code generated after transpilation step) without running any server, ...
user3209013's user avatar
0 votes
0 answers
44 views

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 ...
mahbuburrahman rifat's user avatar
0 votes
0 answers
58 views

on Vue-Laravel-based environment,CSRF token is initialized server-side -non-sanctum, one token per run-: routes/web.php Route::get('csrf-token' , function(){ $token = csrf_token(); return response()-...
Mahmoud Tarek Mahmoud's user avatar
0 votes
1 answer
39 views

I've setup a new VueJS project using the default scaffolding method npm create vue@latest (which right now is Vue 3.5.22), that uses Vite under the hood. I want to use Sass for my stylesheets, and I'm ...
Quentin's user avatar
  • 1,173
0 votes
2 answers
19 views

I'm having a problem with my code. I'm just trying to add a simple marker. Here's my implementation <script setup lang="ts"> import { AbsoluteLayout, Page } from '@nativescript/core'; ...
starleaf1's user avatar
  • 2,928
0 votes
1 answer
95 views

I’m running a Laravel backend alongside a Vue frontend on NGINX. The issue I’m facing is that my API endpoints are returning HTML instead of JSON. For example: https://isuecampusmap.site/api/ → ...
Bunz's user avatar
  • 1
Best practices
1 vote
1 replies
33 views

I'm building a Nuxt 3 application using a feature-based architecture inspired by Domain-Driven Design. Each feature is meant to be fully isolated, with its own components, state, API layer, and ...
KobiM1's user avatar
  • 81
1 vote
0 answers
42 views

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, ...
user31869577's user avatar
0 votes
1 answer
61 views

I have a Laravel 12 project built with the Vue starter kit. By default, the project didn't have any frontend testing libraries. I want to add tests in Vitest. When I run vitest, I get the error: Error:...
TalVik99's user avatar
  • 304
0 votes
0 answers
33 views

I'm using Vite and VueJS in order to build out an application which has the main application scripts, and various plugin scripts which can be loaded in completely independently of the main application ...
Joe Simpson's user avatar
  • 2,594
0 votes
2 answers
65 views

I just started using Vue / Vuetify to build a frontend and I'm currently struggling with styling a navigation drawer, ie the list in it. The problem is that one an item is selected it's highlighted in ...
Abenstex's user avatar
  • 110
-1 votes
1 answer
49 views

I have a simple template with a bar chart that doesn’t render properly in Vue-ECharts, even though the exact same options work fine in the ECharts playground. There are no console errors — the chart ...
Primoz's user avatar
  • 1,534
Best practices
0 votes
2 replies
56 views

const store = reactive({ a: [], b: computed(()=> a.find('needle')), use computed c: ()=> a.find('needle') // or a method }) How should one go about using a computed property in a ...
TurtleTread's user avatar
  • 1,324
0 votes
1 answer
116 views

Here’s the error message from the browser console: Access to fetch at 'https://orbis-api-web.azurewebsites.net/api/v1/UserAuth/RefreshToken' from origin 'https://orbis-solidarity.com' has been ...
christine vasilyan's user avatar
-1 votes
1 answer
68 views

I’m running into an issue with Nuxt 4 / Vue 3 where I need to redirect the user to /login immediately after logging them out or when a token expires. The problem is that if I call navigateTo('/login') ...
Raphael V.'s user avatar
1 vote
0 answers
56 views

I have a list of vue 3 editor components, that I dynamically display based on the "page" the user is currently on. Currently they are stored in a Component[], but I would like to make sure: ...
ST-DDT's user avatar
  • 2,727
0 votes
1 answer
42 views

i'm developing a game with vue.js & vue-router. this often involves fairly large image assets! working in vanilla javascript, i've approached this with window.onload, displaying a div that only ...
ankiolyne's user avatar
0 votes
0 answers
44 views

I have a trouble trying to find out how to make a little thing, let me explain more below. I have a project using php-laravel, coreui vue and using a MVC Architecture, and i made my whole vue dynamic ...
KDG's user avatar
  • 1
0 votes
1 answer
129 views

I'm working on a Vue 3 monorepo with the following structure: packages/ └── ui/ ├── src/ │ ├── components/ │ │ └── *.vue │ └── assets/ │ └── tailwind.css └── ...
Amin's user avatar
  • 397
0 votes
2 answers
59 views

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 ...
Dewvie's user avatar
  • 77
1 vote
1 answer
75 views

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@...
Simon's user avatar
  • 407
2 votes
0 answers
76 views

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 ...
DZN's user avatar
  • 1,658
0 votes
1 answer
54 views

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 = $...
WILLIANS HERIBERTO NAVAS REYES's user avatar
0 votes
0 answers
34 views

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. ...
Win's user avatar
  • 1
0 votes
1 answer
114 views

I have a nuxt 4 app, with vuetify and sidebase nuxt auth. It runs normally during development, but when i build it and serve it using node .output/server/index.mjs, the page does not load, i can see ...
K1Ran's user avatar
  • 1

1
2 3 4 5
2163