Angular 4找不到名称’ViewChild’

前端之家收集整理的这篇文章主要介绍了Angular 4找不到名称’ViewChild’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个奇怪的错误,并没有发现任何类似的东西..
我在我的网站上使用ng2-canvas-whiteboard组件作为绘图画布,除了当我尝试使用以下方法引用该画布时,一切都正常工作:
@ViewChild('canvasWhiteboard') canvasWhiteboard: CanvasWhiteboardComponent;

正如官方文档建议的那样,我收到了这个错误

Failed to compile.

e:/frontend/src/app/components/user/dashboard/dashboard.component.ts (15,2): Cannot find name 'ViewChild'.

有什么建议 ?谢谢

您在使用之前忘记导入ViewChild
import { ViewChild } from '@angular/core'
原文链接:https://www.f2er.com/angularjs/142434.html

猜你在找的Angularjs相关文章