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

9 lines
113 B
Vue

<template>
<span>{{ username }}</span>
</template>
<script>
export default {
props: ['username']
}
</script>