angular-interview-questions
angular-interview-questions copied to clipboard
What is ng-content?
Please add question & answer about ng-content.
@Shashidharknaik Can you create PR?
Example:
my-button.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'my-button',
template: `
<button class='action-btn' (click)="action()">
<ng-content></ng-content>
</button>
`
})
export class MyButtonComponent implements OnInit {
constructor() { }
ngOnInit() {
}
action(){
console.log("action triggered")
}
}
app.component.html
<my-button>
Button 1
</my-button>
<my-button>
Button 2
</my-button>
Using