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

11 lines
149 B
Vue

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