Created
January 24, 2022 20:42
-
-
Save sadewole/36bf0844049b8757f1bda55cd7b4db1f to your computer and use it in GitHub Desktop.
AccordionItem.vue - Template
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="accordionItem"> | |
<button | |
@click="toggleContent" | |
class="accordionItem__header" | |
v-text="label" | |
/> | |
<div :class="['accordionItem__content', isExpanded && '-open']"> | |
<div class="h-p-5"> | |
<slot /> | |
</div> | |
</div> | |
</div> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment