我很好奇有没有办法在组件中重复使用两次ng-content?或者将它分配给组件构造函数中的变量?
就像是:
@Component({
selector: "component"
})
@View({
template: ` and again `
})
还有另一种方法可以帮助 ng-template
裹在ng-content
里面ng-template
,并使用ngTemplateOutlet
与ng-container
例:
用这个,
Anything