As a new user of EmberJS, I am navigating through the API and core components of the framework. One aspect that is challenging for me to fully comprehend is knowing when to utilize an Ember.View
as opposed to an Ember.Component
. My current understanding is that an Ember.Component
allows for custom markup or tags within a template, but even after reading the documentation on the Ember site, I am still unclear on the specific scenarios where a view should be used over a component.
Can someone provide more concrete examples of when using an Ember.View
is essential and relevant? Although I can often include markup directly in my handlebars template without relying on Ember.Views, I am struggling to identify a situation where using one would be beneficial.