Difference between view select and Ember.Select

I would like to know what the difference is between:

{{view "select" ... }}

and

{{view Ember.Select ... }}

On the emberjs.com website documentation, I see the former being used, whereas elsewhere I see the latter more often.

{{view Ember.Select}} is being depreciated and replaced by {{view "select"}}. Fairly recent so that’s probably why you see the old option everywhere yet.

http://emberjs.com/guides/deprecations/#toc_global-lookup-of-views

1 Like