如何在ember.js v3.8中呈现子组件?

时间:2019-04-24 05:07:59

标签: ember.js handlebars.js ember.js-component

在Im在v2.15中工作之前,我可以通过以下方式呈现子组件

p_correctCom

但是无法在v3.8上呈现子组件?

{{component/child-component}}

1 个答案:

答案 0 :(得分:3)

嵌套的组件在尖括号组件调用语法中使用::作为分隔符进行调用:

// Before
{{component/child-component}}

// After
<Component::ChildComponent />

您可以在相应的RFC中找到关于此的更多详细信息:Nested Invocations in Angle Bracket Syntax #457

Ember 3.10之前不支持这些功能。但是有一个polyfill在Ember> = 2.12中可用:ember-angle-bracket-invocation-polyfill