-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdoc-link.vue
49 lines (46 loc) · 1.28 KB
/
doc-link.vue
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
47
48
49
<template>
<chakra.li>
<nuxt-link prefetch :to="props.navItemPath">
<chakra.a
:aria-current="isCurrent ? 'page' : undefined"
text-style="sidebarLink"
:sx="{
color: 'currentColor',
position: 'relative',
'&:after': {
content: `''`,
position: 'absolute',
width: '100%',
transform: 'scaleX(0)',
height: '1px',
top: '85%',
left: 0,
backgroundColor: 'currentColor',
transformOrigin: 'bottom right',
transition: 'transform .4s cubic-bezier(.86, 0, .07, 1)'
},
'&:hover::after': {
transform: 'scaleX(1)',
transformOrigin: 'bottom left'
}
}"
:_hover="{
textDecoration: 'none'
}"
>
<slot />
</chakra.a>
</nuxt-link>
</chakra.li>
</template>
<script lang="ts" setup>
import type { NavItem } from '@nuxt/content/dist/runtime/types';
import { computed } from 'vue';
import { useRoute } from 'vue-router';
import { chakra } from '@chakra-ui/vue-next';
const props = defineProps<{
navItemPath: NavItem['_path'];
}>();
const route = useRoute();
const isCurrent = computed(() => route.path === props.navItemPath);
</script>