Created
October 8, 2021 19:46
-
-
Save hackintoshrao/6ea52e0ce8a4a71640b7213a13ad600c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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