What is NUXT used for?

Nuxt. js enables developers to build Server Side Rendered applications in which a Node. js server will deliver HTML to the client based on your Vue components (rather than running JavaScript on the client side). This will allow for better SEO than traditional SPAs built using Vue.

Read more

Should I use Vuex with inertia?

If you haven’t used InertiaJS before, I’d highly recommend checking it out. It allows you to put together an app in no time at all, saves the headache of structuring an SPA if you don’t need it, and allows you to use VueJS (or other popular frontend frameworks) as your templating engine.

Read more

When should we use Vuex?

It should be obvious you don’t have to keep data that’s only used by one component in the store. Since no other component needs to know about any changes to that data, one should manage it in the component using it. Vuex allows organisation of data into modules so you can keep everything tidy and maintainable.5 Ağu 2020

Read more