mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-09 08:42:15 +01:00
add jetstream permissions, add dynamic inertia module loading, add shadcn components, change modals and dropdowns to shadcn dismissable layer,
18 lines
367 B
Vue
18 lines
367 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>
|