Alejandro Mery
Explore posts from serverstype checking custom AppConfig entries
https://nuxt.com/docs/guide/directory-structure/app-config#app-config-output tells to use
declare module
to extend nuxt/schema
's AppConfigInput
on the index.d.ts
file... where is that?
I tried in src/composables/useFoo.ts
instead, src/composables/index.d.ts
and src/index.d.ts
, but neither validates my custom entry in app.config.ts
. where should this be done I? what if there are other declarations and exports on the same file?40 replies
tailwindcss grid container
using
@nuxt/ui (tailwindcss)
I have a <u-dashboard-panel-content />
containing two "h-[50%]"
cards and I would like each having their default slot used by a grid made by columns occupying all the available space but overflow-x-scroll.
for this I have this structure inside a the card but anything I try either ends in a single row or the ul overflowing. could you enlighten me on how is this usually solved?
my next goal is to manage the overflow using dynamic tabs or pagination1 replies
UDashboardPanel footer (@nuxt/ui-pro)
I'm trying to put a footer on the main (
grow
enabled) panel but I can't get the css right. in the following example I would like the footer to be at the bottom of the screen when NuxtPage is short, but not floating over the content when it's large. suggestions?
3 replies