Setting up Nested Routes
Explore how to set up nested routes within Ember.js to build an admin page with add and edit functionality alongside category pages with dynamic product routes. Understand route generation commands and use Bootstrap to structure the UI effectively.
Nested routes are used by the admin side of the application to load different categories. First, let’s discuss what we want to achieve using nested routing.
Requirements
Admin page
Look at the mock-up design below to get an overview of the structure for the admin route:
Our admin page contains the following two ...