2022-11-27 02:35:26 +00:00
|
|
|
<script setup lang="ts">
|
2022-11-29 08:15:05 +00:00
|
|
|
const props = defineProps<{
|
2022-11-27 16:59:33 +00:00
|
|
|
text?: string
|
2022-11-27 02:35:26 +00:00
|
|
|
icon: string
|
2022-11-30 17:15:18 +00:00
|
|
|
to: string | Record<string, string>
|
2022-11-27 02:35:26 +00:00
|
|
|
}>()
|
2022-11-27 16:59:33 +00:00
|
|
|
|
|
|
|
defineSlots<{
|
|
|
|
icon: {}
|
|
|
|
default: {}
|
|
|
|
}>()
|
2022-11-29 08:15:05 +00:00
|
|
|
|
|
|
|
const router = useRouter()
|
|
|
|
|
|
|
|
useCommand({
|
|
|
|
scope: 'Navigation',
|
|
|
|
|
2022-12-01 13:45:13 +00:00
|
|
|
name: () => props.text ?? (typeof props.to === 'string' ? props.to as string : props.to.name),
|
2022-11-29 08:15:05 +00:00
|
|
|
icon: () => props.icon,
|
|
|
|
|
|
|
|
onActivate() {
|
|
|
|
router.push(props.to)
|
|
|
|
},
|
|
|
|
})
|
2022-11-27 02:35:26 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-29 20:15:53 +00:00
|
|
|
<NuxtLink :to="to" active-class="text-primary" group focus:outline-none @click="$scrollToTop">
|
2022-12-04 14:17:02 +00:00
|
|
|
<div flex w-fit px5 py2 md:gap2 gap4 items-center transition-100 rounded-full group-hover:bg-active group-focus-visible:ring="2 current">
|
2022-11-27 02:35:26 +00:00
|
|
|
<slot name="icon">
|
2022-12-04 14:17:02 +00:00
|
|
|
<div :class="icon" md:text-size-inherit text-xl />
|
2022-11-27 02:35:26 +00:00
|
|
|
</slot>
|
2022-11-27 16:59:33 +00:00
|
|
|
<slot>
|
|
|
|
<span>{{ text }}</span>
|
|
|
|
</slot>
|
2022-11-27 02:35:26 +00:00
|
|
|
</div>
|
|
|
|
</NuxtLink>
|
|
|
|
</template>
|