NgRx live example 失败并显示错误消息“属性 'store' is used before its initialization

NgRx live example fails with error message "Property 'store' is used before its initialization

我刚刚开始使用 NgRx,我正在努力处理 NgRx 演练 (https://ngrx.io/guide/store/walkthrough) 中的实例。它失败并显示以下错误消息:

属性 'store' 在初始化之前使用。

有人知道怎么解决吗?我在这里创建了一个 StackBlitz 分支:

https://stackblitz.com/edit/angular-wstvmm?file=src/app/app.component.ts

尝试

  books$;
  bookCollection$;
  
  constructor(private booksService: GoogleBooksService, private store: Store) {
    this.books$ = this.store.select(selectBooks);
    this.bookCollection$ = this.store.select(selectBookCollection);
  }