funkwhale/front/src/components/common/Username.vue

12 lines
150 B
Vue

<script setup lang="ts">
interface Props {
username: string
}
defineProps<Props>()
</script>
<template>
<span>{{ username }}</span>
</template>