Skip to content

Instantly share code, notes, and snippets.

@sadewole
Created December 12, 2021 19:17
Show Gist options
  • Save sadewole/e27a4b9b3129ef95b286961dc347bae6 to your computer and use it in GitHub Desktop.
Save sadewole/e27a4b9b3129ef95b286961dc347bae6 to your computer and use it in GitHub Desktop.
Tab.vue - Template
<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