DesertCookie
Explore posts from serversNuxtImage/NuxtPicture using low-quality/low-resolution image
I have an Nuxt UI caroussel containing iamges:
The images chosen and generated by IPX are of low-resolution with a max-width of 300 pixels. The URL is:
This behavior is the same for NuxtImage and NuxtPicture. Adding
.../_ipx/w_1024&f_avif&q_75/images/NAME.webp
(original is WebP).This behavior is the same for NuxtImage and NuxtPicture. Adding
height="384"
(equals h-96
) to the component results in the same behavior. There are no additional settings for Nuxt Image.1 replies
Append to UTable header template slot
I want to add a textfield to certain columns of my table to be used as filters. For example, to filter the "title", "invNo", or "address" columns of my table. I have achieved this by creating custom
<template #title-header="{column}">...
slots. However, this completely removes the NuxtUI components, leaving me having to implement such things as sorting myself.
Is there a way to only append to the default NuxtUI UTable slot, leaving the default functionality intact?2 replies