forked from Stigmatoz/web-activity-time-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDonation.vue
More file actions
46 lines (39 loc) · 890 Bytes
/
Donation.vue
File metadata and controls
46 lines (39 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<template>
<div>
<p class="title">
{{ t('enjoy.message') }}
</p>
<p>
{{ t('canDonate.message') }}
</p>
<div class="mt-30">
<p>{{ t('coin.message') }} <span class="font-bold"> USDT </span></p>
<p>{{ t('chain.message') }}<span class="font-bold"> Ethereum (ERC20) </span></p>
<p>
{{ t('address.message') }}
<span class="font-bold"> 0x427a22e1f4ba81351c22465faf6cfcf6095583d1 </span>
</p>
</div>
<img class="mt-15" src="../assets/icons/donation-qr.png" />
<p class="font-bold mt-30">
{{ t('thanks.message') }}
</p>
</div>
</template>
<script lang="ts">
export default {
name: 'Donation',
};
</script>
<script lang="ts" setup>
import { useI18n } from 'vue-i18n';
const { t } = useI18n();
</script>
<style scoped>
p {
font-size: 15px;
}
.title {
font-size: 18px !important;
}
</style>