Capture Incoming HTTP request using composable in Nuxt 3
Is it possible to capture incoming request data from the index.vue page in Nuxt. I read in the documentation that index.vue is the default page when a Nuxt app is invoked. I want to be able to capture if a POST request is sent when invoking the application. Is that possible and how would that work. The useRequestEvent captures the IncomingMessage but it does not have the body of the request
Vue3: radio input is checked but doesn’t appear checked
I have a radio input with v-model
a ref()
that, although it is marked as checked
, it doesn’t appear so in the browser.
Vue3/Nuxt3 virtual view for table content which support both horizontal and vertical scroll
In Vue3/Nuxt3, I need a library that supports virtual view for grids (similar to react-virtualized MultiGrid in React) that can handle both horizontal and vertical scrolling for table content.
I haven’t had success with some of the libraries I’ve tried so far like vue-virtual-scroller, vue-virtual-scroll-grid, vue-virtual-collection from antv/select as the performance is not optimal when dealing with large amounts of data.
I tried implementing it myself, but it’s not as straightforward, and scrolling is not as smooth as without virtualization. Even when using it with antv/select, there’s still lag.
So I’m seeking guidance from the experts: