mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-19 03:11:24 +00:00
9 lines
208 B
JavaScript
9 lines
208 B
JavaScript
export default {
|
|
methods: {
|
|
userName(userName) {
|
|
// Return Anonymous if no Username is given else return full Username
|
|
return userName ? userName : this.$t('profile.userAnonym')
|
|
}
|
|
}
|
|
}
|