Files
nexus/app/Domains/Dashboard/Views/Dashboard.vue
T
2026-07-02 15:52:13 +02:00

13 lines
240 B
Vue

<script setup>
import AppLayout from '@/layouts/AppLayout.vue'
import { ref } from 'vue'
const message = ref('Hallo Welt')
</script>
<template>
<AppLayout title="Dashboard">
<h2>{{ message }}</h2>
</AppLayout>
</template>