Dynamic component loader
Component templates are not always fixed. An application might need to load new components at runtime. Angular comes with its…
Design – Plan – Write
Component templates are not always fixed. An application might need to load new components at runtime. Angular comes with its…
When we start building apps with UI frameworks like Angular, the most frequent questions that we are faced with right…
Usually we use @Output() and EventEmitter (from Angular/core) to emit an event to parent component. @Output() addTab = new EventEmitter<any>(); ...…