All Questions
232 questions
0
votes
0
answers
26
views
How can I make vue app loaded more than six tabs
I have a strange problem that even I don't know what is the source. I have a vue app, which works without any problem but if I open the in the 7th or more tab the request doesn't get response and it ...
0
votes
0
answers
198
views
How to update/refresh v-date-picker if start and end dates changes?
I use V-Calendar Plugin for Vue JS (latest second version):
https://v2.vcalendar.io/.
I have the following v-date-picker in the child component:
<template>
<div>
<vc-date-...
-3
votes
1
answer
756
views
I was installing Vue.js in my system but this error occurred
I was installing Vue.js in my system using npm i -g @vue/cli but this happened:
npm WARN cleanup Failed to remove some directories [
npm WARN cleanup [
npm WARN cleanup 'C:\\Users\\pc\\...
-1
votes
3
answers
1k
views
No 'Access-Control-Allow-Origin' header is present on the requested resource. using vuejs and express
please i keep getting this error in my vue code
Access to XMLHttpRequest at 'http://localhost:3001/api/chats' from origin 'http://localhost:8081' has been blocked by CORS policy: No 'Access-Control-...
0
votes
1
answer
1k
views
Vue Cli Serve Fatal JavaScript invalid size error: node_api_throw_syntax_error
My problem ist, that I am not able to serve or build my vue app. While doing so, i get the following error:
INFO Starting development server...
[70%] sealing (finish module graph ...
1
vote
1
answer
74
views
When using JWT for route authentication, the page stays stuck in the same place
I am currently working on modifying a project. The front-end uses Vue 2.0 and the back-end uses Node.js Express. I'm using the JWT approach by setting all pages except the login page to require ...
0
votes
1
answer
68
views
Vue getComponentName returns function instead of 'undefined'
I have a project I've been working on upgrading from Vue 2.6 to 2.7, and have ironed out most of the kinks. However, there are a couple files that are written with cased props, which vue tries to ...
0
votes
0
answers
78
views
Vue2 Router not routing correctly, show blank pages
I am new to Vue, facing routing problem
When i try to start my frontend vue, it shows blank page, i don't know why it is not route to my login page, anyone can help to fix it? looks like the router ...
0
votes
1
answer
2k
views
How to improve VueJS dev performance (RAM-wise)?
I am currently working on a Vue.js project with a pretty large codebase. It is written on Vue 2. What I have noticed is that when I run it on development mode using vue-cli-service serve, it uses >...
2
votes
1
answer
4k
views
Vue 2.7 getCurrentInstance() trying to get properties like $vuetify
I'm trying to migrate from vuetify 2.6 to 2.7 because of composition-api but I'm getting a lot of errors when trying to get properties of the Vue instance, for example I'm using vue with Vuetify and I ...
0
votes
2
answers
1k
views
Why does changing configureWebpack in vue.config.js to use an arrow function instead of an object break the configuration?
I have the following vue.config.js file:
const fs = require('fs');
const util = require('util');
const webpack = require('webpack');
const CopyPlugin = require('copy-webpack-plugin');
const path = ...
0
votes
1
answer
38
views
keep response key nodejs sequelize on null with vue2
my response json
if null
dm_personal: null
if not null
if null
dm_personal: { id: 1 }
how to keep the key of response on null ?
or how to implement on vue2 if i fetch / load single data that set ...
0
votes
0
answers
36
views
How can I solve npm install error from the terminal? [duplicate]
I using node version 16.16.0 and npm version 8.11.0
I'm currently accessing a vue project on my local. So I need to run npm install. This vue project version: v2.6.11. When I run npm install there is ...
0
votes
1
answer
894
views
How to solve vue 3 compatible packages problem?
I'm trying to update my packages with npm.
I want to use vue 3 but there are some problems in these 3 packages:
@vue/composition-api
vue-class-component
vue-property-decorator
I cannot install them.
...
0
votes
1
answer
1k
views
I'm using dynamic routing with vue router in vue js but can't get data by id
I'm using dynamic router to navigate from dashboard to detail page, in URL bar still get id but it doesn't work for detail page and console gives error : GET http://localhost:1337/jobinfos/undefined
...