adata-ui 4.0.24 → 4.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
+
import { useRoute } from "vue-router";
|
|
2
3
|
import AIconMagnifyingGlass from "../icons/other-service/magnifying-glass.vue";
|
|
3
4
|
import AIconUsersThree from "../icons/other-service/users-three.vue";
|
|
4
5
|
import AIconLink from "../icons/other-service/link.vue";
|
|
@@ -10,6 +11,7 @@ import AIconStandingScales from "../icons/other-service/standing-scales.vue";
|
|
|
10
11
|
import AIconArrowTopRightOnSquare from "../icons/other-service/arrow-top-right-on-square.vue";
|
|
11
12
|
import { PAGES } from "../shared/constants/pages";
|
|
12
13
|
import { useAppConfig } from "#imports";
|
|
14
|
+
import { useLocalePath, useI18n } from "#i18n";
|
|
13
15
|
const { tm, rt, t } = useI18n();
|
|
14
16
|
const route = useRoute();
|
|
15
17
|
const localePath = useLocalePath();
|
|
@@ -48,7 +50,7 @@ async function handleClick(link) {
|
|
|
48
50
|
|
|
49
51
|
<template>
|
|
50
52
|
<section class="a-container mb-10 flex flex-col gap-4 lg:mb-20 lg:gap-8">
|
|
51
|
-
<h2 class="heading-02 md:heading-01 px-4 md:px-0">
|
|
53
|
+
<h2 class="heading-02 md:heading-01 px-4 md:px-0 lg:text-4xl text-2xl lg:text-left text-center font-bold">
|
|
52
54
|
{{ t("restTasks.title") }}
|
|
53
55
|
</h2>
|
|
54
56
|
<ul class="grid grid-cols-1 gap-3 px-4 sm:grid-cols-2 lg:grid-cols-3 md:px-0">
|