Skip to content

Instantly share code, notes, and snippets.

@chris2cant
Last active October 7, 2019 07:58
Show Gist options
  • Save chris2cant/421b25c1fa4a0e597b5fae756ad58616 to your computer and use it in GitHub Desktop.
Save chris2cant/421b25c1fa4a0e597b5fae756ad58616 to your computer and use it in GitHub Desktop.

Angular

Package

Component

Access to the parent component

export class MslFieldComponent implements OnInit {
  constructor(private readonly parentComponent: ParentComponent) {}

  ngOnInit() {
    console.log(parentComponent);
  }
}

Stackblitz Example

Articles

Webpack Build

Articles & Ressources

Contributors

  • Jeremy Ciamous
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment