2019-08-20 04:05:58 +00:00
|
|
|
<template>
|
|
|
|
<footer>
|
|
|
|
<small>
|
|
|
|
{{ $t('platforms.donateMessage') }}
|
|
|
|
<a href="https://www.paypal.me/RomanCervantes/5" target="_blank">
|
|
|
|
{{ $t('platforms.donating') }}
|
|
|
|
</a>
|
|
|
|
,
|
2019-09-11 19:06:57 +00:00
|
|
|
<a href="https://github.com/romancm/gamebrary/issues" target="_blank">
|
2019-08-20 04:05:58 +00:00
|
|
|
{{ $t('platforms.reportBugs') }}
|
|
|
|
</a>
|
|
|
|
{{$t('global.or')}}
|
|
|
|
<a href="https://goo.gl/forms/r0juBCsZaUtJ03qb2" target="_blank">
|
|
|
|
{{ $t('platforms.submitFeedback') }}
|
|
|
|
</a>
|
|
|
|
.
|
|
|
|
</small>
|
|
|
|
|
|
|
|
<igdb-credit gray />
|
|
|
|
</footer>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import IgdbCredit from '@/components/IgdbCredit';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
IgdbCredit,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|