This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/components/Authors.vue

46 lines
1.3 KiB
Vue

<template>
<ul class="list-unstyled">
<li class="mb-2">
<Icon v="collective-logo.svg"/>
<nuxt-link :to="`/${config.contact.team.route}`">
<T>contact.team.name</T>
</nuxt-link>
</li>
<li v-for="author in config.contact.authors || []" class="mb-2">
<Icon :v="author.group ? 'users' : 'user'"/>
<a :href="author.link" target="_blank" rel="noopener">
{{author.name}}
</a>
</li>
<li v-if="authors === undefined">
<Spinner/>
</li>
<template v-else>
<li v-for="author in authors" class="mb-2">
<Icon v="user"/>
{{ author.footerName }}
<nuxt-link :to="`/@${author.username}`" class="badge badge-light border">
@{{author.username}}
</nuxt-link>
<br/>
<small>
{{author.footerAreas.replace(/,/g, ', ')}}
</small>
</li>
</template>
</ul>
</template>
<script>
export default {
data() {
return {
authors: undefined,
}
},
async mounted() {
this.authors = await this.$axios.$get(`/admin/list/footer`);
},
}
</script>