February 2016
Beginner to intermediate
308 pages
5h 46m
English
To work with templates, we need to understand the basics on how properties bind with controllers and components. Here are a few recipes that go over how to accomplish this.
Before we get started, we'll need to generate a template.
$ ember new HelloWorldApp $ cd HelloWorldApp
This command will generate a new application that we can use for this recipe.
$ ember g route helloworld
This command will generate the template and routes file as well as unit tests. The template file is called helloworld.hbs and will be generated in the app/templates folder. The route file is called helloworld.js and is located ...
Read now
Unlock full access