mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-09 16:52:17 +01:00
18 lines
370 B
Vue
18 lines
370 B
Vue
<script setup lang="ts">
|
|
import { Tabs, TabsList } from '@/Components/ui/tabs';
|
|
|
|
defineProps<{
|
|
defaultValue?: string;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<Tabs :default-value="defaultValue" class="w-full">
|
|
<TabsList class="flex items-center space-x-0.5 sm:space-x-1">
|
|
<slot></slot>
|
|
</TabsList>
|
|
</Tabs>
|
|
</template>
|
|
|
|
<style scoped></style>
|