forked from Stigmatoz/web-activity-time-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.vue
More file actions
45 lines (42 loc) · 1.16 KB
/
About.vue
File metadata and controls
45 lines (42 loc) · 1.16 KB
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
<template>
<div class="about">
<label class="about-label"
>GitHub:
<a href="https://github.com/Stigmatoz/web-activity-time-tracker" target="_blank"
>github.com/Stigmatoz/web-activity-time-tracker</a
></label
>
<label class="about-label"
>{{ t('github.message') }}
<a href="https://github.com/Stigmatoz/web-activity-time-tracker/issues" target="_blank"
>GitHub issues page</a
></label
>
<label class="about-label"
>{{ t('question.message') }}
<a :href="CHROME_STORE_SUPPORT_URL" target="_blank">{{ t('supportForm.message') }}</a
>.</label
>
<label class="about-label"
>{{ t('doYouEnjoy.message') }}
<a :href="CHROME_STORE_REVIEW_URL" target="_blank">{{ t('review.message') }}</a></label
>
</div>
</template>
<script lang="ts">
export default {
name: 'About',
};
</script>
<script lang="ts" setup>
import { useI18n } from 'vue-i18n';
import { CHROME_STORE_SUPPORT_URL, CHROME_STORE_REVIEW_URL } from '../utils/chrome-url';
const { t } = useI18n();
</script>
<style scoped>
.about .about-label {
font-size: 14px;
margin-bottom: 30px;
display: block;
}
</style>