forked from Stigmatoz/web-activity-time-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLimits.vue
More file actions
36 lines (32 loc) · 784 Bytes
/
Limits.vue
File metadata and controls
36 lines (32 loc) · 784 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
<template>
<div>
<p class="title mt-0">{{ t('limits.message') }}</p>
<p class="description">
{{ t('limits.description') }}
</p>
<p class="description">
{{ t('limitsTip.message') }}
</p>
<ListWithTimeComponent :type="ListWithTime.Limits" />
<PromoClearYouTube />
</div>
</template>
<script lang="ts">
export default {
name: 'Limits',
};
</script>
<script lang="ts" setup>
import ListWithTimeComponent from '../components/ListWithTime.vue';
import PromoClearYouTube from '../components/PromoClearYouTube.vue';
import { ListWithTime } from '../utils/enums';
import { useI18n } from 'vue-i18n';
const { t } = useI18n();
</script>
<style scoped>
.about .about-label {
font-size: 14px;
margin-bottom: 30px;
display: block;
}
</style>