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

40 lines
1.1 KiB
Vue
Raw Normal View History

2020-09-23 12:16:56 -07:00
<template>
2021-01-12 11:06:59 -08:00
<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>
2020-12-29 09:44:06 -08:00
</nuxt-link>
2020-09-23 12:16:56 -07:00
</li>
2021-01-12 11:06:59 -08:00
<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>
2020-09-23 12:16:56 -07:00
</ul>
</template>
<script>
export default {
2021-01-12 11:06:59 -08:00
data() {
return {
authors: undefined,
}
},
async mounted() {
this.authors = await this.$axios.$get(`/admin/list/footer`);
2020-09-23 12:16:56 -07:00
},
}
</script>