February 2016
Beginner to intermediate
308 pages
5h 46m
English
Using conditionals is fundamental to using Ember's templating engine. In the following recipes, we'll take a look at conditionals and how they work with templates.
Let's take a look at a simple example that displays text if some property is true.
conditional. Run this command in the root of the application folder to create controller and template:$ ember g controller conditional $ ember g template conditional
This will create the conditional controller.
router.js file with the new conditional route:// app/router.js
…
Router.map(function() {
this.route('conditional');
});This will add a new conditional route. To access this route ...
Read now
Unlock full access