这是我的情况:
我有一个组件Foo
,我希望它有一个名为的 blazor 模板Wrapper
,该模板将用于包装Foo
's 的某些内容。
我需要做的是
正常使用:
<Foo>
<Wrapper>
<div>
<p>Something in the wraper</p>
@context // context should be some content of Foo
</div>
</Wraper>
</Foo>
里面Foo
@* Other content of Foo*@
@if(Wrapper != null){
@* Pass to Wrapper some content of Foo *@
Wrapper(@* How to render html/components here? *@)
}
@* Other content of Foo*@
但是有没有办法为模板传递html或组件?
我怎样才能做到这一点?