Files
maaw/pages/dashboard.vue
Michael Dausmann 6632e707ce initial commit
2023-01-02 16:35:39 +11:00

12 lines
170 B
Vue

<script setup lang="ts">
definePageMeta({
middleware: ['auth'],
layout: "authenticated",
});
</script>
<template>
<div>
<h3>Dashboard</h3>
</div>
</template>