elk/components/common/CommonTabs.vue

40 lines
1 KiB
Vue
Raw Normal View History

<script setup lang="ts">
defineProps<{
options: string[]
}>()
2022-11-23 08:08:49 +00:00
const { modelValue } = defineModel<{
modelValue: string
}>()
function toValidName(otpion: string) {
return otpion.toLowerCase().replace(/[^a-zA-Z0-9]/g, '-')
}
</script>
<template>
2022-11-26 17:36:23 +00:00
<div flex w-full items-center lg:text-lg>
<template v-for="option in options" :key="option">
<input
2022-11-23 08:08:49 +00:00
:id="`tab-${toValidName(option)}`"
:checked="modelValue === option"
:value="option"
type="radio"
name="tabs"
display="none"
@change="modelValue = option"
><label
2022-11-26 17:36:23 +00:00
flex flex-auto cursor-pointer p3 m1 rounded transition-all
2022-11-23 08:08:49 +00:00
:for="`tab-${toValidName(option)}`"
tabindex="1"
2022-11-23 14:39:48 +00:00
hover:bg-active transition-100
2022-11-23 08:08:49 +00:00
@keypress.enter="modelValue = option"
><span
2022-11-26 17:36:23 +00:00
mxa px2 text-center
2022-11-23 08:08:49 +00:00
:class="modelValue === option ? 'font-bold border-b-3 border-primary' : 'op50 hover:op50'"
>{{ option }}</span>
</label>
</template>
</div>
</template>