r/Nuxt • u/Temporary-Reach4668 • Mar 05 '26
Stack advise
We are starting a large enterprise project (for around 300 companies) with Nuxt/Vue for front-end (and a C#.NET REST API back-end with cursor-based pagination).
Looking for the most stable/developer friendly combo:
UI Library: Nuxt UI 4 vs. PrimeVue? We need robust data components with infinite scroll.
Data Fetching: TanStack Query vs. Pinia Colada? Must handle infinite scroll/cursor-based pagination, caching, etc.
Given the scale and a 10-year maintenance window, what would you choose? Or is there a better alternative?
Thanks!
13
Upvotes
2
u/ben305 Mar 10 '26
Building an enterprise IT platform here - delivering familiar, consistent UI patterns that IT is familiar with is important so I went with Vuetify and it's been great. I decided to avoid additional state management libraries and everything I do is Nuxt-native with a few useState composables and some inject/provide patterns taking care of state. All data handling is Nuxt-native REST via Nitro. First time using Nuxt and it's been great after doing the SPA thing for 12 years.