答案 0 :(得分:4)
对等依赖项是指我们需要在应用程序中安装才能正常运行的其他依赖项 npm不会为我们安装对等依赖项。因此我们必须手动安装它们。 例如,您需要像这样安装它们
npm install --save @angular/common
npm install --save @angular/core
npm install --save @angular/platform-browser
有时你可以通过删除和重新安装npm packages来解决它。就像这样。
rm -rf node_modules/
npm cache clean
npm install
检查这些数据表。我已将此数据表用于我的开发。 https://teradata.github.io/covalent/#/components/data-table