So, nuxt problems:
• SSR rendering patterns and data hydration on server was not as maturely developed as NextJS ... this resulted in a lot of console noise and rendering flash
• at my last work we ended up switching the app to completely do client side rendering to improve page speed 😆
• overly strict foldering opinions esp for component naming... remember how all components would by default inherit the parent folder name?
Components like /Foo/Bar/Thing.vue
would become named as <FooBarThing/>
wherever you want to import it due to its build opinions.
• auto-imports were possible because at build time nuxt generates a series .d.ts
in .nuxt/
of ALL composable and components such that they are globally namespaced. If you don't know about this it can be very easy to create conflicting and duplicate namespaced component prop types