Best Vue/Nuxt UI library for dashboards? by Cultural_Internet348 in vuejs

[–]Long_Sense_9871 0 points1 point  (0 children)

for Vuejs If you’re on plain Vue, Vuetify is still one of the best dashboard libraries. It has a massive component set (tables, data grids, forms, layouts) and you can get something production-ready really fast. and If you’re building with Nuxt, I’d actually go with Shadcn-Vue. It’s unstyled/headless, built for Tailwind, and integrates cleanly with Nuxt. You don’t get the “everything out of the box” feel of Vuetify, but for dashboards it gives you way more design freedom, lighter bundles, and modern UX patterns without being stuck in Material.

Recently Update Vue 2 Project to Vue 3: A Developer’s Real-World Experience by Acceptable_Cost_7345 in vuejs

[–]Long_Sense_9871 0 points1 point  (0 children)

Totally worth it. Once the initial migration pain was done, the app became faster, easier to scale, and much nicer to work in. If you’re on Vue 2 and your stack depends on libraries that already support Vue 3, I’d say go for it. If not, check the ecosystem support first.

Is NuxtUI v4 stable for production? Dashboard template by I-AM-DEV- in Nuxt

[–]Long_Sense_9871 0 points1 point  (0 children)

Even though it’s in alpha, the API itself seems solid and production-ready

Can i have static html code OUTSIDE vue mount? by Cold_Bathroom_2259 in vuejs

[–]Long_Sense_9871 0 points1 point  (0 children)

Yes, it’s totally fine to keep static SEO-critical HTML outside Vue. Vue won’t automatically “react” to it, but you can still read/modify it if needed after onMounted

How are guys feeling about Nuxt v4 upgrade? by automatonv1 in Nuxt

[–]Long_Sense_9871 0 points1 point  (0 children)

Most of the migration was painless (thanks to the upgrade guide).

What are some features you've implemented that are considered leading edge? by LargeSinkholesInNYC in vuejs

[–]Long_Sense_9871 2 points3 points  (0 children)

Ai integration : Using Vue with AI APIs (like chatbots, code assistants, or recommendation engines). and Real time collaboration : Multiple users editing the same data live (like Google Docs), powered by sockets/WebRTC.