Skip to content

Instantly share code, notes, and snippets.

@pierbotteroweb
Last active May 3, 2025 17:11
Show Gist options
  • Save pierbotteroweb/f37c267832d27b52b6b32cf836bdcf20 to your computer and use it in GitHub Desktop.
Save pierbotteroweb/f37c267832d27b52b6b32cf836bdcf20 to your computer and use it in GitHub Desktop.
This is a vue Slot Example
<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