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.
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>
|
2021-12-16 04:10:54 -08:00
|
|
|
<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>
|
2021-12-30 04:02:18 -08:00
|
|
|
<p class="small">
|
|
|
|
<Financial/>
|
|
|
|
</p>
|
2021-01-27 05:24:25 -08:00
|
|
|
</section>
|
|
|
|
</template>
|
2021-09-08 13:57:31 -07:00
|
|
|
|
|
|
|
<script>
|
2021-12-16 04:10:54 -08:00
|
|
|
import {getSupportLinks} from '../src/contact';
|
2021-12-08 08:21:27 -08:00
|
|
|
|
2021-09-08 13:57:31 -07:00
|
|
|
export default {
|
2021-12-16 04:10:54 -08:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
links: [...getSupportLinks(this.config)],
|
|
|
|
}
|
|
|
|
},
|
2021-09-08 13:57:31 -07:00
|
|
|
}
|
|
|
|
</script>
|