mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 11:29:56 +02:00
8 lines
113 B
Vue
8 lines
113 B
Vue
<template>
|
|
<span>{{ username }}</span>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: ['username']
|
|
}
|
|
</script>
|