作者:coolbreeze | 来源:互联网 | 2022-11-26 12:57
我正在尝试使用标签@ContentChildren
来拾取所有物品#buttonItem
.
@ContentChildren('buttonItem', { descendants: true })
当我们直接在父组件中包含ref项时,这是有效的.
但是,如果带有#buttonItem
ref 的元素包含在自定义组件中,@ContentChildren
即使我设置了该{descendants: true}
选项,也不会被选中.
我创建了一个简单的StackBlitz示例来演示这一点.