Hi, In order to get my app to act as a single page app should I be using Conditional Rendering over Conditional Display? (Provided I don’t need to access variables from one tab to the next)
Also, with Conditional Rendering, when something meets the conditions and is rendered, then at a certain point it does not meet the condition anymore, does that just hide it or does it remove it from the DOM as well?
Hi,
Weweb is an spa by design, so no need to use conditional rendering, you can safely create different pages.
You can use linked section if you wish to have a common header or navbar.
Conditional rendering mount and unmount the html from the DOM each time the condition changed.