c0b983e016
- Tailwind CSS v4 con @tailwindcss/vite - shadcn-vue: 19 componentes UI (button, card, dialog, table, select, tabs, sidebar, separator, breadcrumb, badge, avatar, dropdown-menu, tooltip, input, switch, sheet, skeleton) - Sidebar collapsible con íconos Lucide - Theme Teloprax en CSS variables (rojo #E63946, negro #1A1A2E) - LoginView, DashboardView, CalendarView, SchedulerView migrados - Eliminado AppShell.vue manual (reemplazado por SidebarProvider) - Layout con breadcrumb, sidebar trigger, header unificado
16 lines
289 B
Vue
16 lines
289 B
Vue
<script setup lang="ts">
|
|
import type { SelectValueProps } from 'reka-ui'
|
|
import { SelectValue } from 'reka-ui'
|
|
|
|
const props = defineProps<SelectValueProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<SelectValue
|
|
data-slot="select-value"
|
|
v-bind="props"
|
|
>
|
|
<slot />
|
|
</SelectValue>
|
|
</template>
|