添加@ngrx/store并尝试添加StoreDevtool扩展
StoreDevtoolsModule.instrumentOnlyWithExtension({
maxAge: 5
})并得到错误
属性'instrumentOnlyWithExtension‘在’StoreDevtoolsModule‘类型中不存在
发布于 2017-12-15 16:00:40
已经找到了答案,在最新版本中,该属性已被instrument替换
StoreDevtoolsModule.instrument({
maxAge: 5
})https://stackoverflow.com/questions/47835869
复制相似问题