Now that we’ve organized the project and added development tools, let’s get back to adding more features to the Issue Tracker. In this chapter, we’ll explore the concept of routing, or handling multiple pages that we may need to display. Even when you build a single-page application (SPA ), there are in fact multiple logical pages (or views) within the application. It’s just that the page load happens only the first time; after that, each of the other views is loaded by manipulating or changing the DOM.
To navigate between different views of the application, you need routing. Routing ...