vbv/client/src/pages/ProfilePage.vue

14 lines
208 B
Vue

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