import { Store } from '@ngxs/store';
@Component({ ... })
export class ZooComponent {
animals$: Observable<string[]>;
constructor(private store: Store) {
this.animals$ = this.store.select(state => state.zoo.animals);
}
}
我正在使用 ngxs/store
但是,我收到以下错误:
error TS2564: Property 'animals$' has no initializer and is not definitely assigned in the constructor.