36 questions
Score of 1
1 answer
73 views
How to disable the error overlay (red bar) in Nuxt 2 when receiving bad responses from backend?
I'm working with a Nuxt 2 application, and whenever I receive a 4XX or 5XX error response from my backend API, a red error "loading" overlay bar appears at the top of the application.
I want ...
Score of 2
1 answer
95 views
Nuxt build error, can't find "this.$refs" (upgrade nuxt 2.15 to 2.18)
So this question was aseked and was deleted by bot because of my inaction to reply the comments, also I updated my new findings.
01/12/2024
So when I run yarn dev or build in nuxt 2.15, node 18.20.5 I ...
Score of 0
0 answers
89 views
nuxtjs has issue as : vue-ls Storage "local" is not supported your system, use memory storage
I'm running nuxtjs(2) front-end project and facing one issue in my terminal after hitting "npm run dev". I'm not sure, how to fix this? You can see in the screenshot attached.
https://i....
Score of 0
0 answers
70 views
How can I pass form data from a nested component to a outer component using Vue2 and Nuxt2
I am fairly new to view and learning as I go. I am trying to get data from a form that is built in different components. The flow is outer component calls inner component calls nested component. I ...
Score of 0
1 answer
167 views
NuxtJs dev build breaking after I updated to v2.15
I recently updated my an old nuxtjs project from 1.4.5 to 2.12.0 so i could take advantage of the public and private runtime config. Everything seems to work until it attempts to finish building the ...
Score of 0
0 answers
415 views
How to call function onload in nuxtjs
I have an app in Nuxtjs 2. I'm using nuxt-facebook-pixel-module to track user activity on my websites. I add Facebook conversion API to it. I created an API endpoint which calls the Facebook ...
Score of 1
1 answer
1021 views
Nuxt Fatal Error SyntaxError: Invalid or unexpected token
When I install bootstrap-vue-next for Nuxt v2.8.1 project, I use the command from the documentation (https://bootstrap-vue-next.github.io/bootstrap-vue-next/docs.html): yarn add bootstrap bootstrap-...
Score of -3
1 answer
366 views
How to add wordpress to nuxtjs in a subpage [closed]
I have project in nuxtjs 2 and it’s deployed on vercel. I have also a web server where I use for wordpress site. Is it possible to add wordpress woocommerce store to nuxtjs. I mean I want on my main ...
Score of 0
0 answers
311 views
Run head script on server side nuxt js
I'm trying to add meta script tag to nuxt page inside head tag
head() {
return {
title: 'Test',
script: [
{
vmid: 'meta1',
innerHTML: `console.log('test')
`,
type: 'text/...
Score of 1
1 answer
133 views
The geography display on the leaflet map does not appear in nuxtjs version 2
Package installed: leaflet: ^1.9.4 nuxt: ^2.0.0 node: 14.21.3` npm: 6.14.18
The problem: The geography display on the leaflet map does not appear, I used GeoJSON.
I have written the initials of the ...
Score of 0
1 answer
31 views
nuxtjs-auth module not fetching user or setting cookeis after successful login request
Nuxtjs-auth module was working fine when my local instances of the frontend and backend app were both running on localhost (frontend was on port 3000, backend was on port 8000)
I dockerized the ...
Score of 1
0 answers
104 views
extendRoutes not accepting the dynamic urls
I have a url in nuxt app
https://example.netlify.app/nl/appartementen/strand?experiences_in[]=strand&types_in[]=appartementen
In which appartementen is a type & strand is an experience.
I ...
Score of 1
1 answer
921 views
Dynamically adding a prefix to a named route in vue 2 / nuxt 2
Pretty simple question, I am pushing a named route like so:
this.$nuxt.$router.push({ name: "my-named-route-id-foo", params: { id: this.$route.params.id } });
But I want to conditionally ...
Score of 0
0 answers
226 views
Add a maxlength for the search input in vue-multiselect
I'm using vue-multiselect(V2.1.6) component for my project with nuxt 2 and Vue 2.6. Here created the component with asynchronous search which I need to search a word by typing. Furthermore, I need to ...
Score of 0
1 answer
521 views
How to NuxtLink with Dynamic, Nested Pages?
I have a URL that looks like this where _websiteId and _appId is UUID:
/websites/_websiteId/apps/_appId/plugins
how can I link between the above and:
/websites/_websiteId/apps/_appId/settings
without ...