我正在尝试在组件中使用p表。每次从app.module.ts导入TableModule时,都会出现以下错误:
compiler.js:1021 Uncaught Error: Unexpected value 'undefined' imported by the module 'DropdownModule'
at syntaxError (compiler.js:1021)
at compiler.js:10589
at Array.forEach (<anonymous>)
at CompileMetadataResolver.push../node_modules/@angular/compiler/fesm5/compiler.js.CompileMetadataResolver.getNgModuleMetadata (compiler.js:10558)
at CompileMetadataResolver.push../node_modules/@angular/compiler/fesm5/compiler.js.CompileMetadataResolver.getNgModuleSummary (compiler.js:10493)
at compiler.js:10580
at Array.forEach (<anonymous>)
at CompileMetadataResolver.push../node_modules/@angular/compiler/fesm5/compiler.js.CompileMetadataResolver.getNgModuleMetadata (compiler.js:10558)
at CompileMetadataResolver.push../node_modules/@angular/compiler/fesm5/compiler.js.CompileMetadataResolver.getNgModuleSummary (compiler.js:10493)
at compiler.js:10580
我不在任何地方导入或使用下拉模块。我不了解下拉列表与Tablemodule有何关系。
我尝试使用以下命令导入DropdownModule:
import {DropdownModule} from "primeng/components/dropdown/dropdown";
但是我仍然遇到相同的错误。