10.1.常见问题
angular:常见代码问题
报错:'app-header' is not a known element:
原因:模块间只能使用已导出的组件,而app-header未导出。
解决方法:在模块的exports中声明暴露header组件
src/app/core/core.module.ts
Last updated
Was this helpful?
原因:模块间只能使用已导出的组件,而app-header未导出。
解决方法:在模块的exports中声明暴露header组件
src/app/core/core.module.ts
Last updated
Was this helpful?