mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-01-31 15:37:09 +01:00
12 lines
141 B
Vue
12 lines
141 B
Vue
<template>
|
|
{{ user ?? "no user" }}
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
useHead({
|
|
title: "Home",
|
|
});
|
|
|
|
const user = useUser();
|
|
</script>
|