EmberJS-Rendering With Helpers



Rendering With Helpers

Ember.js provides rendering the views and templates in different ways. The following table lists down helper that renders the templates in different way −

S.N.Helpers & Description
1

The {{partial}} Helper

{{partial}} takes the template to be rendered as an argument, and renders that template in place.

2

The {{view}} Helper

It provides a view class rather than template.

3

The {{render}} Helper

It tells Ember.js to devote the portion of the page to something.

Advertisements