Username component

merge-requests/154/head
Eliot Berriot 2018-03-01 23:45:46 +01:00
rodzic a6da10be41
commit 2d12c56b90
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DD6965E2476E5C27
2 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,8 @@
<template>
<span>{{ username }}</span>
</template>
<script>
export default {
props: ['username']
}
</script>

Wyświetl plik

@ -4,4 +4,8 @@ import HumanDate from '@/components/common/HumanDate'
Vue.component('human-date', HumanDate)
import Username from '@/components/common/Username'
Vue.component('username', Username)
export default {}