13 lines
271 B
Vue
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>
|