I am just getting started with Nuxt and I'm in the process of creating a Single Product. I have some questions:
- How can I generate multiple pages using SSR and create a unique HTML for each page? Should CSR be developed first before implementing SSR, or is it vice versa?
- If I use Vuex and dispatch a method in async Data, is it possible to access that data in computed properties? In other words, will the HTML be dynamically generated if we retrieve data in the computed session? How do I effectively utilize Vuex to ensure that each product has its own distinct HTML page?
Appreciate any guidance on this matter.