Setting up Routes
Learn to create basic routes and link routes together.
We'll cover the following...
We need three basic routes in our application—admin
, category
, and cart
.
Generating routes
Let’s generate our three basic routes by running the following Ember CLI commands:
$ ember g route admin
$ ember g route category
$ ember g route cart
We can ...