Last active
May 3, 2025 17:11
-
-
Save pierbotteroweb/f37c267832d27b52b6b32cf836bdcf20 to your computer and use it in GitHub Desktop.
This is a vue Slot Example
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
<Card> | |
<template v-slot:title> | |
<h3>Card Title</h3> | |
</template> | |
<p>This is the main content of the card.</p> | |
<template v-slot:footer> | |
<small>Card footer info</small> | |
</template> | |
</Card> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment