Skip to content

Instantly share code, notes, and snippets.

View vahidvdn's full-sized avatar
🏠
Working from home

Vahid Najafi vahidvdn

🏠
Working from home
  • Berlin, Germany
View GitHub Profile
@vahidvdn
vahidvdn / gist:d776bbb029085b0c0eb0668226607bac
Last active December 12, 2021 12:19
Angular relation between component - Car
@Component({
selector: 'car',
template: '<wheel color="color"></wheel>',
})
export class CarComponent implements OnInit {
color: string = 'red';
}
@Component({
selector: 'wheel',
<div>test</div>