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/Support.vue

33 lines
794 B
Vue
Raw Normal View History

2021-01-27 05:24:25 -08:00
<template>
<section>
<h3>
<Icon v="people-carry"/>
<T>support.header</T>
</h3>
<p><T>support.description</T></p>
<p>
<a v-for="link in links" :key="link.url"
2021-01-27 05:24:25 -08:00
:href="link.url" target="_blank" rel="noopener"
class="btn btn-outline-primary border m-1">
<Icon :v="link.icon" :set="link.iconSet || 'l'"/>
{{link.headline}}
</a>
</p>
<p class="small">
<Financial/>
</p>
2021-01-27 05:24:25 -08:00
</section>
</template>
2021-09-08 13:57:31 -07:00
<script>
import {getSupportLinks} from '../src/contact';
2021-12-08 08:21:27 -08:00
2021-09-08 13:57:31 -07:00
export default {
data() {
return {
links: [...getSupportLinks(this.config)],
}
},
2021-09-08 13:57:31 -07:00
}
</script>