Nuxt

N

Nuxt

Nuxt Community Chat Server

Join

Form fields reset on submit, and a some other strange behavior

Hi all! I've used Vue for several years, but I've been working on learning some new libraries to add to my toolbox (Nuxt, NuxtUI, Pinia Colada)... I noticed some strange behavior when using the NuxtUI Form component with Pinia Colada and I created a simple Todo app to replicate the issues I'm seeing. I'm hoping somebody here can help me out. https://github.com/partap/nuxtui-forms-test...

navigation menu custom slot

when i want to customise the navigation menu with a custom slot to the left of the links I need to basically recreate the entire menu for that parent link right? ```<!-- Events custom slot --> <template #events-content="{ item }"> <ul class="grid gap-2 p-4 lg:w-[500px] lg:grid-cols-[minmax(0,.75fr)_minmax(0,1fr)]"> <li class="row-span-3"> <p>Left side content</p>...

ContextMenu in table

How do I put a contextMenu on a table? In nuxt ui 2 you could but in nuxt ui 3 I don't know how

Nuxt content sqlite modify #nuxtcontent

Hi I have been playing with Nuxt content and I wonder How could a I modify the sqlite dump. I want to save vector embeddings into the generated sqlite.

favicon setup

I have nuxt-seo currently im using the default favicon.ico but I want to set this up properly now. Should I generate a favicon.ico with different sizes online somewhere and just replace that file? or do I need seperate files with different favicon sizes?

Breaking out of nested page layouts

Say I have this pages structure: ``` ├── users.vue ├── users │ ├── index.vue...

Devs are getting error during test/build -> Invalid `NUXT_UI_PRO_LICENSE` license key

* Happening in our GitHub workflows (see image attached) * So far, whenever this happens we have found that there are two devs running builds simultaneously... is this a limitation? * Re-running the build again 20 seconds later usually results in success * We have an "Organization" subscription to Nuxt...
No description

Modal resize

Is there any way to change the width of the nuxt ui modal? Because I was looking and I can't make it wider and I need it to be wider

Page loads twice

Heya, I currently have the problem that my page loads 2 times as soon as I enter it, here is my script part: ```typescript <script lang="ts" setup> const route = useRoute()...

need help with (Jimp.read) error for my image conversion webpage.

I am working on a small project JPEG to PNG conversion webpapge and i am facing an error which I need help with. The backend code in convert.post.ts is having a read error. here is the code the line consisting this (^) is where the error is . Also the image with error message. ```import { H3Event, readMultipartFormData } from 'h3' const Jimp =(await import('jimp')).default import { writeFile, mkdir } from 'fs/promises'...
No description

all routes 404 at prerender

Why with this ``` nitro: { prerender: { routes: [...

uheader :open not working

I am using UHeader in nuxtUI pro. I want to toggle the open state programatically: <UHeader title="title" mode="slideover"...

cant use node-cron in server plugins

```js // server/plugins/init.ts import cron from "node-cron"; export default defineNitroPlugin(() => {...

explain nuxt content rendering strategies etc

So I have a default page layout with a navbar (which shows when you're logged in etc) my content pages use this default layout however I have a problem as currently using routerules in nuxt config i prerender these content pages and when hard refreshing the page or navigating directly to the page the navbar won't update its status to show the user is logged in. however if i navigate via nuxtlinks internally to the page its fine. now if i remove the prerender true then i can no longer navigate to...

Multiple entry points in nuxt

I was wondering if there was a way to have multiple entry points in nuxt where one could be the app and another could be another component that can be used as a module on a website

Component synchronisation in nuxt studio

Hey! It seems like components are only picked up by studio to be used in markdown autocomplete after they are used in content files. Is there a way for them to get picked up without them being used in content files already? Thanks in advance!

Help setting up Playwright and Github Actions

Hi, can anyone help me setup Playwright for use on Github Actions? My tests works flawless when i run them locally, but cant get them to work as an action...

How to convert <img /> to <NuxtImg />?

I'm trying to convert this <img src="../assets/imgs/Hero.jpg" alt="" /> to <NuxtImg src="../assets/imgs/Hero.jpg" alt="" /> and i get the error in browser ...

Suppress 'would you like to install any of the official modules' when using npx nuxi@latest init

I am attempting to create a Windows command file to be run unattended that creates a standard, empty Nuxt 3 project. When I use this syntax I get the new feature that displays a list of official modules to select from: npx nuxi@latest init acsw-mp-lite --packageManager npm --gitInit false ...

Page Content Navigation

How can I implement the navigation menu of the NuxtUI wepage (https://nuxt.com) For example, which component can I use to implement the "On this page" pop-out menu?...
No description