EmberJS- Generated Objects



Generated Objects

If you not define Route, Controller, View, and Template classes objects the Ember.js will automatically generates these objects into your application.

Generated Routes

The Ember.js will automatically generates the route if you not defined in your application.

Generated Controllers

The Ember.js will automatically generates the controller for the appropriate route, if it is not defined in your application.

Generated Views and Templates

The Ember.js will automatically generates the view if you not defined in your application. The template is nothing but outlet. If you not declare outlet the Ember.js will automatically generates {{outlet}} within template.

Advertisements