一、在父子组件中,子组件通过属性接收父组件传递过来的参数

  1. <app-header [title]="title" ></app-header>

二、子组件中引入Input模块

  1. import { Component, OnInit,Input } from '@angular/core';

三、注册模块

  1. export class HeaderComponent implements OnInit {
  2. @Input() title:string
  3. constructor() { }
  4. ngOnInit() {
  5. }
  6. }

四、使用

  1. <h1>{{title}}</h1>