Created
January 30, 2019 17:48
-
-
Save yyx990803/2d8752821c6d658d426c3759180cfc9a 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
<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