Skip to content

Instantly share code, notes, and snippets.

@RayLuxembourg
Created August 19, 2018 14:50
Show Gist options
  • Save RayLuxembourg/b8ce0e9e9e72a424e11f1bc7977dd7d7 to your computer and use it in GitHub Desktop.
Save RayLuxembourg/b8ce0e9e9e72a424e11f1bc7977dd7d7 to your computer and use it in GitHub Desktop.
Component using resolver
export class ProductComponent implements OnInit {
product: Product;
constructor(private route: ActivatedRoute) {}
ngOnInit() {
this.product = this.route.snapshot.data['product'];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment