【发布时间】:2016-04-23 09:26:38
【问题描述】:
是否可以在 htmlbars 中使用等价的扩展运算符?
let items = ['hello', 'world'];
someFunction(...items); // equivalent to someFunction('hello', 'world');
我在 htmlbars 中需要这个
{{link-to 'some.route' ...items}}
【问题讨论】:
标签: ember.js