How to pass values from child to parent component in Angular 4

后端 未结 2 1402
执笔经年
执笔经年 2020-12-16 19:01

I am working in an Angular4 application ,In I\'m trying to pass values from child component to parent component .I have implemented something but I can\'t get the output as

2条回答
  •  自闭症患者
    2020-12-16 19:29

    In angular 4 you can use @Input, @Output decorators for values or Emit the data.

    Please refer https://angular.io/guide/component-interaction

提交回复
热议问题