mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-05 02:51:23 -04:00
38 lines
994 B
Vue
38 lines
994 B
Vue
<template>
|
|
<AdPlaceholder phkey="support"/>
|
|
<!--
|
|
<section>
|
|
<h3>
|
|
<Icon v="people-carry"/>
|
|
<T>support.header</T>
|
|
</h3>
|
|
<p><T>support.description</T></p>
|
|
<p>
|
|
<component v-for="link in links" :key="link.url"
|
|
:is="link.tooltip ? 'Tooltip' : 'span'" :text="link.tooltip">
|
|
<a :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>
|
|
</component>
|
|
</p>
|
|
<p class="small">
|
|
<Financial/>
|
|
</p>
|
|
</section>
|
|
-->
|
|
</template>
|
|
|
|
<script>
|
|
import {getSupportLinks} from '../src/contact';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
links: [...getSupportLinks(this.config)],
|
|
}
|
|
},
|
|
}
|
|
</script>
|