avances poderosos en ui
This commit is contained in:
14
ui/src/views/ChatView.vue
Normal file
14
ui/src/views/ChatView.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<script setup>
|
||||
/* Vista raíz “/” → muestra el chat estilo ChatGPT */
|
||||
import CanvasChat from '@/components/chat/CanvasChat.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="h-full flex flex-col">
|
||||
<CanvasChat class="flex-1" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
/* nada por ahora */
|
||||
</style>
|
||||
21
ui/src/views/NotFound.vue
Normal file
21
ui/src/views/NotFound.vue
Normal file
@@ -0,0 +1,21 @@
|
||||
<script setup>
|
||||
import { useRouter } from 'vue-router'
|
||||
const router = useRouter()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="h-full flex flex-col items-center justify-center gap-6 p-8 text-center">
|
||||
<h1 class="text-5xl font-bold text-teal-600">404</h1>
|
||||
<p class="text-lg text-gray-700">Uy, no encontramos esa página.</p>
|
||||
|
||||
<button
|
||||
@click="router.push('/')"
|
||||
class="inline-flex items-center gap-2 px-4 py-2 rounded-lg bg-teal-600 text-white hover:bg-teal-700 transition">
|
||||
← Volver al inicio
|
||||
</button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
/* Estilos extra opcionales */
|
||||
</style>
|
||||
0
ui/src/views/SettingsView.vue
Normal file
0
ui/src/views/SettingsView.vue
Normal file
1
ui/src/views/asistencias/AsistenciaForm.vue
Normal file
1
ui/src/views/asistencias/AsistenciaForm.vue
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
1
ui/src/views/asistencias/AsistenciasIndex.vue
Normal file
1
ui/src/views/asistencias/AsistenciasIndex.vue
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
1
ui/src/views/empleados/EmpleadoForm.vue
Normal file
1
ui/src/views/empleados/EmpleadoForm.vue
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
1
ui/src/views/empleados/EmpleadosIndex.vue
Normal file
1
ui/src/views/empleados/EmpleadosIndex.vue
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
1
ui/src/views/planillas/PlanillaForm.vue
Normal file
1
ui/src/views/planillas/PlanillaForm.vue
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
1
ui/src/views/planillas/PlanillasIndex.vue
Normal file
1
ui/src/views/planillas/PlanillasIndex.vue
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
1
ui/src/views/tareas/TareaForm.vue
Normal file
1
ui/src/views/tareas/TareaForm.vue
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
1
ui/src/views/tareas/TareasIndex.vue
Normal file
1
ui/src/views/tareas/TareasIndex.vue
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
Reference in New Issue
Block a user