当我在项目中添加模块here文件夹时,出现错误:在编译时找不到模块'lodash.isequal'。我正在安装lodash但出现了相同的错误。
答案 0 :(得分:0)
我刚刚浏览了您的代码,并尝试了lodash
和它的工作。
执行以下步骤:
步骤1:转到项目目录并运行命令:
npm install lodash --save
步骤2:现在转到要导入lodash
的组件文件。
以:
导入文件顶部 import _ from 'lodash';
第3步:现在,像下面的组件一样使用lodash:
_.find(this.columnDefinitions, function (device) {
if(device.id==='duration'){
console.log("device",device);
}
});
我在您的GridAddItemComponent
组件中使用了它。
就是这样。
现在您可以在上述任何地方使用
快照: