vbv/client/src/views/DashboardView.vue

16 lines
215 B
Vue

<script setup lang="ts">
import * as log from 'loglevel';
log.debug('DashboardView created');
</script>
<template>
<main class="px-8 py-8">
<h1>Dashboard</h1>
</main>
</template>
<style scoped>
</style>