Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
0 replies
17 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
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
0 votes
1 replies
38 views

I have a situation where a pina store variable should be reset as soon as it is consumed. Apparently because of reactivenes I cannot do: defineStore('SystemStore', { state() { return { ...
theking2's user avatar
  • 3,101
0 votes
1 answer
17 views

How can I get the seo of my Nuxt app from one external api, in this case strapi, and use it in my app, actually I have this, // enter code here import { getEnv } from "../src/utils"; import {...
xavi zamora's user avatar
1 vote
0 answers
212 views

I want to set up a fresh Laravel 12 project that uses Vue.js for the frontend. However, I don’t want to use the new Wayfinder package that comes with Laravel 12. Instead, I’d like to configure it like ...
khalid's user avatar
  • 27
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
1 vote
0 answers
41 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
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
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
656 votes
54 answers
943k views

In my Nuxt application where ESlint and Prettier are installed and enabled, I switched to Visual Studio Code. When I open a .vue file and press CMD+ Shift + P and choose Format Document, my file does ...
Billal BEGUERADJ's user avatar
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
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
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
0 votes
0 answers
35 views

my vue site is simple as hell I think <template> <v-calendar type="category" v-model="focus" :categories="categories" :events="events"...
Torsten's user avatar
3 votes
2 answers
3k views

Since Tailwind v4 update, all @apply directives have ceased to function. The docs provide a workaround with @reference but the posted example is vague. I tried this but it doesn't work: <style lang=...
van_folmert's user avatar
  • 4,599
0 votes
0 answers
35 views

I have the follwing: <Panel header="SITE MANAGEMENT"> <template #icons> <Button severity="secondary" rounded text @click="showAddNewModal = true"&...
Robert Benedetto's user avatar
1 vote
2 answers
78 views

when i try to use frappe ui components in vujs project i got some errors. i have a Dialog component containing TextEditor,FormControl components of type text,date,select <Dialog v-model="...
Akhil K Prakash's user avatar
2 votes
1 answer
144 views

I'm working on a project where I'm trying to implement a model context protocol server for my LLM to use called server-sequential-thinking. I have a chat area where a user can enter a prompt and the ...
aloo_q's user avatar
  • 33
151 votes
21 answers
126k views

I have a Vue.js application where two files contain: import axios from "axios" These files are located in src/lib within the application and include the import statement on their first line. ...
knirirr's user avatar
  • 2,949
726 votes
16 answers
638k views

I'm trying to understand how to properly watch for some prop variation. I have a parent component (.vue files) that receive data from an ajax call, put the data inside an object and use it to render ...
Plastic's user avatar
  • 10.3k
238 votes
33 answers
688k views

I design websites in VSC and PowerShell is my default terminal. After updating and deploying a website to firebase earlier, I was prompted to update firebase tools - which I did using npm. ...
Aponting's user avatar
  • 2,391
0 votes
1 answer
68 views

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 ...
Mr. CC's user avatar
  • 244
4 votes
1 answer
155 views

My understanding is that in Vue if you have a boolean reference named bar, in the templating syntax for v-bind you can pass :foo="bar" and Vue will dynamically unwrap the bar reference at ...
Garret Wilson's user avatar

1
2 3 4 5
2163