我正在使用ember-font-awesome,
https://github.com/martndemus/ember-font-awesome
当我尝试在组件上绑定单击操作处理程序时(请参阅下面的代码),操作永远不会被触发,
在我的组件内
{{fa-icon "times" (action "paramRemove" param on="click")}}
如何在不重新打开组件的情况下将操作绑定到组件?
答案 0 :(得分:1)
您需要使用操作助手定义点击属性值。 参考 - https://github.com/martndemus/ember-font-awesome#actions
{{fa-icon "times" click=(action "paramRemove" param)}}