Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
152 views

Is it possible to build a Nuxt 3 App so that it will use a unix socket instead of serving on a local tcp port? I am intending to make an app with pywebview and nuxt3. I want the pywebview to display ...
Safwan Amin's user avatar
1 vote
0 answers
35 views

Please help. I developed a web using Nuxt3. I found that after running with nodejs, the new robots.txt file under my public folder, I modified the content of robots.txt, but refreshing my web did not ...
蜀云泉's user avatar
-1 votes
1 answer
475 views

I am geting the error "Cannot read properties of undefined (reading 'defineComponent')" when i try to use the "npm install vue3-carousel" library on my nuxt3 application i get ...
Loveth Benwakma's user avatar
0 votes
1 answer
145 views

I'm now using shadcn datatable with Tanstack table. I have a checkbox on the first column, but I am confused about how to check all the checkboxes as default. And also have to select/deselect when ...
cony's user avatar
  • 35
1 vote
1 answer
218 views

I am trying to change the color of a scrollbar at a certain position but using window.scrollY seems to trigger errors: const navBar = computed<NavigationBarData>( () => { if (window....
Qiuzman's user avatar
  • 1,843
3 votes
2 answers
1k views

I am working locally on an application built with Nuxt.js 3 and using Postgreql. I am finding that I am running into the following error message: Cannot access 'renderer$1' before initialization 1: No ...
d-fws's user avatar
  • 91
0 votes
3 answers
1k views

I'm migrating a large application from Nuxt 2 to Nuxt 3 and I decided to create a fresh Nuxt 3 application and move code from my previous version to this one but I encountered a problem in my nuxt....
Manuel Duarte's user avatar
0 votes
1 answer
49 views

My Nuxt3 App structure is like this. pages ┣ ab ┃ ┣ 028 ┃ ┃ ┣ [id].vue ┃ ┃ ┗ index.vue ┃ ┗  029 ┃ ┣ index.vue ┃ ┗ ranking ┃ ┗ index.vue ┣ index.vue ┣ [id].vue ┗ ranking ┣ index.vue ┗ [slug]....
yasuda_t's user avatar
  • 365
0 votes
1 answer
241 views

In my Nuxt3 application I would like to use drizzle as my ORM. I registered the DB connection as a Nitro plugin like this: export default defineNitroPlugin(async (nitroApp) => { const db = ...
Cilenco's user avatar
  • 7,249
3 votes
1 answer
1k views

I’m building a gallery component in where clicking on an image opens a <dialog> containing an embla-carousel. The problem is that when I click on an image, the carousel always opens at index 1, ...
Michael's user avatar
  • 563
1 vote
0 answers
112 views

I am using nuxt 3 SSR with useSeoMeta for pages/posts/[id].vue like this useSeoMeta({ title: () => post.value?.title, description: () => post.value?.subtitle, keywords: () => ...
Sovai's user avatar
  • 154
-1 votes
2 answers
46 views

this is a link to my google avatar, which is saved on my server https://lh3.googleusercontent.com/a/ACg8ocKK6uA2DcFFe5MAOtMhGdir04H4FUM9q9ufZW7538UvQ63sIoM=s96-c. I can't display the avatar on the ...
Vadim Yanyushkin's user avatar
0 votes
1 answer
280 views

I have a /profile page that includes common elements like sidebar, which I handle with a profile layout. The /profile page also has a sub-page at /profile/favorite. I want to use both the default ...
Michael's user avatar
  • 563
0 votes
0 answers
367 views

CORS ERROR I have an issue in my project, I understand the error, as well as I tried to find answer for it but no luck so far. Here is my scenario: I have nuxt 3 app, where I am embedding one of the ...
Nixit Ahir's user avatar
  • 2,425
1 vote
1 answer
492 views

I am trying tu use TypeORM in a Nuxt 3 application. [email protected] [email protected] I added TypeORM as a plugin: // plugins/typeorm.ts import 'reflect-metadata'; import { defineNuxtPlugin } from '#app'; ...
nicodel's user avatar
  • 21
0 votes
1 answer
774 views

I am facing an issue with route transitions when conditionally disabling layouts on specific pages. I have a <NuxtPage /> in app.vue wrapped in default <NuxtLayout />, which contains a ...
Michael's user avatar
  • 563
0 votes
1 answer
444 views

This is a stupid question, but I can't figure out what I'm doing wrong. Trying to setup CK5 in Vue and I'm running into some issues. Getting this error: Component is missing template or render ...
rikuto148's user avatar
  • 263
1 vote
2 answers
3k views

I can't understand why setting proxy in nuxt 3 doesn't work When im trying to get data i see incorrect url in development tools Below is my code, what am i doing wrong? nuxt.config.js export default ...
Maxim's user avatar
  • 47
1 vote
0 answers
32 views

I am always getting this after a purchase in a Nuxt 3, stripe project: PaymentIntent status: requires_payment_methodThe PaymentIntent requires a payment method. Here is my frontend function: try { ...
hhhhhhh's user avatar
  • 11
0 votes
1 answer
65 views

I'm working on nuxt3, TailwindCss. Using @coremyslo/nuxt-icon-font and svg to make icon font, but some of icon did not show as expected. This is my svg image content <svg width="24" ...
cony's user avatar
  • 35
0 votes
1 answer
259 views

I have included DOMPurify in my Nuxt application as a plugin imported from a layer. I have a textarea that is capturing user input and I can use the v-dompurify-html directive to display the text ...
Peter Hentges's user avatar
1 vote
1 answer
670 views

I am trying to integrate Supabase Github OAuth with Nuxt 3 but I am having an error "500 auth session missing" and it's very slow! The server middleware causing the Error: (user.ts) import {...
Daly's user avatar
  • 315
0 votes
1 answer
1k views

I am using Nuxt and have added a Sheet component from shadcn-vue (https://www.shadcn-vue.com/docs/components/sheet.html) into my project. The example provided in the documentation uses a SheetTrigger ...
Michael's user avatar
  • 563
0 votes
1 answer
348 views

I'm developing a Nuxt.js application and I need to set a decorative background image for a <div>. I prefer using background-image for decorative elements, as it is semantically more appropriate, ...
Michael's user avatar
  • 563
0 votes
1 answer
469 views

const { data, status, error, refresh, clear } = await useAsyncData( 'campaign', () => $fetch(`${$request.baseUrl}/cs/v1/campaign/find/${route.params.campaign}?mode=${route.query.mode || ''}`, {...
Anseloh's user avatar
  • 65

1
5 6
7
8 9
53