Created
March 13, 2019 00:10
-
-
Save johnleider/cd28cd805f292e20051ea1ca8fee1929 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
<template> | |
<div class="pa-5"> | |
<v-expansion-panel :value="2" class="mb-3"> | |
<v-expansion-panel-content | |
v-for="(item,i) in 5" | |
:key="i" | |
> | |
<template v-slot:header> | |
<div>Item</div> | |
</template> | |
<v-card> | |
<v-card-text>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</v-card-text> | |
</v-card> | |
</v-expansion-panel-content> | |
</v-expansion-panel> | |
<v-expansion-panel :value="1" popout class="mb-3"> | |
<v-expansion-panel-content | |
v-for="(item,i) in 5" | |
:key="i" | |
> | |
<template v-slot:header> | |
<div>Item</div> | |
</template> | |
<v-card> | |
<v-card-text>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</v-card-text> | |
</v-card> | |
</v-expansion-panel-content> | |
</v-expansion-panel> | |
<v-expansion-panel :value="3" inset class="mb-3"> | |
<v-expansion-panel-content | |
v-for="(item,i) in 5" | |
:key="i" | |
> | |
<template v-slot:header> | |
<div>Item</div> | |
</template> | |
<v-card> | |
<v-card-text>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</v-card-text> | |
</v-card> | |
</v-expansion-panel-content> | |
</v-expansion-panel> | |
<v-expansion-panel :value="4" accordion class="mb-3"> | |
<v-expansion-panel-content | |
v-for="(item,i) in 5" | |
:key="i" | |
> | |
<template v-slot:header> | |
<div>Item</div> | |
</template> | |
<v-card> | |
<v-card-text>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</v-card-text> | |
</v-card> | |
</v-expansion-panel-content> | |
</v-expansion-panel> | |
</div> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment