- Nuevo layout responsivo mobile-first con tabs inferiores - Sidebar colapsable en desktop con cola de impresión - Sistema de templates reutilizables con localStorage - Soporte Dark/Light mode con UColorModeButton - Composables usePrintQueue y useTemplates para estado global - Componentes modulares: CommandBuilder, QuickActions, PrintQueue, QueueItem - Navegación por tabs: Constructor | Cola | Templates
13 lines
206 B
TypeScript
13 lines
206 B
TypeScript
export default defineAppConfig({
|
|
ui: {
|
|
colors: {
|
|
primary: 'zinc',
|
|
secondary: 'slate',
|
|
success: 'emerald',
|
|
info: 'sky',
|
|
warning: 'amber',
|
|
error: 'rose'
|
|
}
|
|
}
|
|
})
|