@ngrx Angular @ngrx/store-devtools instrumentOnlyWithExtension
@ngrx Angular @ngrx/store-devtools instrumentOnlyWithExtension
添加@ngrx/store并尝试添加 StoreDevtool 扩展
StoreDevtoolsModule.instrumentOnlyWithExtension({
maxAge: 5
})
出现错误
Property 'instrumentOnlyWithExtension' does not exist on type 'typeof
StoreDevtoolsModule'
已经找到答案,在最新版本中这个属性被替换为instrument
StoreDevtoolsModule.instrument({
maxAge: 5
})
添加@ngrx/store并尝试添加 StoreDevtool 扩展
StoreDevtoolsModule.instrumentOnlyWithExtension({
maxAge: 5
})
出现错误
Property 'instrumentOnlyWithExtension' does not exist on type 'typeof StoreDevtoolsModule'
已经找到答案,在最新版本中这个属性被替换为instrument
StoreDevtoolsModule.instrument({
maxAge: 5
})