“data lewat sudut ke komponen anak” Kode Jawaban

data lewat sudut ke komponen anak

Parent component:
<app-child-component [item]="data"></app-child-component>

Child component.ts
import { Component, Input } from '@angular/core'; // First, import Input
export class ItemDetailComponent {
  @Input() item = ''; // decorate the property with @Input()
}
MitchAloha

Perent ke Data Anak Lulus Dalam Angular

//app.html:
<h1>this is perent component</h1>
<app-child [items]="employee"></app-child>
//app.component.ts:
 employee = {
    id: 1,
    name: 'chintan',
    address: 'junagadh',
  };
//child.component.ts:
@Input() items: any;
//child.html:
<h2>{{ items.id }}</h2>
<h2>{{ items.name }}</h2>
<h2>{{ items.address }}</h2>
30_Savaliya Denish

Jawaban yang mirip dengan “data lewat sudut ke komponen anak”

Pertanyaan yang mirip dengan “data lewat sudut ke komponen anak”

Lebih banyak jawaban terkait untuk “data lewat sudut ke komponen anak” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya