Skip to content

Instantly share code, notes, and snippets.

@hackintoshrao
Created October 8, 2021 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hackintoshrao/6ea52e0ce8a4a71640b7213a13ad600c to your computer and use it in GitHub Desktop.
Save hackintoshrao/6ea52e0ce8a4a71640b7213a13ad600c to your computer and use it in GitHub Desktop.
<div id="my-component">
<header>
<!-- children with the `slot="header"` attribute will go here -->
<slot name="header" />
</header>
<main>
<!-- children without a `slot` (or with the `slot="default"`) attribute will go here -->
<slot />
</main>
<footer>
<!-- children with the `slot="footer"` attribute will go here -->
<slot name="footer" />
</footer>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment