Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

90
Views
Accessing Angular Component's DOM children

I'm trying to create an Angular reusable button component. Right now, it is used like so:

<fun-button
  [disabled]="true">
  [label]="'button label'"
>
</fun-button>

The template for fun-button looks like this:

<button>
  {{this.label}}
</button>

So far, so good. Everything works.

Now I would like to modify fun-button so that it is used more like an HTML button:

<fun-button>
  child button label
</fun-button>

How can I access fun-button's DOM children, which in this case is the string 'child button label'?

Is such a thing even possible? I've seen a bunch of answers that involve tagging the child elements, but in my case I want to accept any arbitrary children.

Thanks!

EDIT, WITH ANSWER:

Turned out to be incredibly easy, thanks MikeOne. Just made the template look like this:

<button>
  <ng-content></ng-content>
</button>

And then use like this:

<fun-button>
  child button label
</fun-button>
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Made the template look like this:

<button>
  <ng-content></ng-content>
</button>

And then use like this:

<fun-button>
  child button label
</fun-button>
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!