组件HTML:

<ng-template #content/> </ng-template>

组件TS:
@ViewChild('content')
public content: TemplateRef;

Visual Studio消息:
[ts] Generic type 'TemplateRef<C>' requires 1 type argument(s)

我是不是应该就这么做?
代码示例似乎从未指定泛型。
这是新的吗?

最佳答案

在角材料2中

TemplateRef<any>

到处
https://github.com/angular/material2/search?utf8=%E2%9C%93&q=templateref&type=
我还没有看到任何与此类型参数相关的地方。

10-08 04:38