我有以下无效的初始化程序:
Ember.onLoad 'Ember.Application', (Application) ->
Ember.Application.initializer
name: 'storeToComponent'
initialize: (container, application) ->
application.inject('component', 'store', 'store:main')
该组件没有 store 属性。我尝试了很多事情,例如:
before: 'registerComponents'
但没有任何效果。
我究竟做错了什么?