Skip to content

Instantly share code, notes, and snippets.

@yyx990803
Created January 30, 2019 17:48
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 yyx990803/2d8752821c6d658d426c3759180cfc9a to your computer and use it in GitHub Desktop.
Save yyx990803/2d8752821c6d658d426c3759180cfc9a to your computer and use it in GitHub Desktop.
<my-component>
<template v-slot:header>
<p>Header</p>
</template>
<template v-slot:item="{ data }">
<h2>{{ data.title }}</h2>
<p>{{ data.text }}</p>
</template>
<template v-slot:footer>
<p>Footer</p>
</template>
</my-component>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment