0.1.1 (2020-07-02)
Bug Fixes
- clean up observables, updated docs (cba6db6)
Features
- add Angular Getting Started application (331e825)
- add NgRx example app (8f024e4)
- add router lib (c2502f6)
- add support for lazy loading NgModules (0d2aa76)
- add tour of heroes app (588dbe6)
BREAKING CHANGES
- The input for lazy loading has change from [loadComponent] to [load] to support
components and NgModules
BEFORE:
<route path="/path" [loadComponent]=""></route>
AFTER:
<route path="/path" [load]=""></route>