我有这个奇怪的错误,并没有发现任何类似的东西..
我在我的网站上使用ng2-canvas-whiteboard组件作为绘图画布,除了当我尝试使用以下方法引用该画布时,一切都正常工作:
我在我的网站上使用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
原文链接:https://www.f2er.com/angularjs/142434.htmlimport { ViewChild } from '@angular/core'