Juan Felipe Zapata Moreno 3c70f41652 Cambios
2025-08-21 17:12:07 -06:00

13 lines
271 B
Vue

<script setup>
import Welcome from '@/Components/Dashboard/Welcome.vue';
import Layout from '@/Layouts/DashboardLayout.vue';
</script>
<template>
<Layout title="Dashboard">
<div class="py-4">
<Welcome />
</div>
</Layout>
</template>