LoginSignup
2
0

More than 5 years have passed since last update.

AngularのComponentで{children}みたいなことをしたい

Last updated at Posted at 2018-06-29

状況

AngularでアプリケーションをラップするようなContainer Componentを作ろうとしたら

解決

Reactで言うところの{children}にあたる、コンポーネントの小要素を表示できるようなスニペットがなかなか見つかりませんでした

調べて見ると、Angularでは小要素は<ng-content>というタグがこれに当たるようです

<!-- React -->
<div className="container">
  {children}
</div>

これが

<!-- Angular -->
<div class="container">
  <ng-content></ng-content>
</div>

こうなります

おわりに

Reactの脳みそで検索をかけていたのでangular childrenみたいな感じで調べていましたが、いまいちヒットせず、、

同じような方がこの記事にたどり着いてくれたら嬉しいです

参考

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0