Juan Felipe Zapata Moreno be89d18e74 Init
2025-07-01 10:36:19 -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>