Last updated 3 years ago
Was this helpful?
browser ⟩ web components ⟩ using components
do not query web components too early.
some web components are written to:
expect children.
not expect children (and won't display them)
optionally accept specially labelled children that will appear in named "".
<!-- load web component module --> <script type="module" src="components/search-box.js"> <!-- use its tag in HTML --> <search-box placeholder="Search..."></search-box>
📗 JavaScript: The Definitive Guide (15.6 Web Components)