Created
December 12, 2021 19:17
-
-
Save sadewole/e27a4b9b3129ef95b286961dc347bae6 to your computer and use it in GitHub Desktop.
Tab.vue - Template
This file contains 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="tab"> | |
<input | |
v-model="selectedTab" | |
type="radio" | |
:id="value" | |
:name="groupName" | |
:value="value" | |
class="tab__input" | |
/> | |
<label class="tab__label" :for="value"> | |
<span class="tab__labelText">{{ label }}</span> | |
<span class="tab__label--overlay" /> | |
</label> | |
</div> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment