mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
59802f0896
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
39 lines
725 B
Vue
39 lines
725 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
text?: string
|
|
icon: string
|
|
to: string
|
|
}>()
|
|
|
|
defineSlots<{
|
|
icon: {}
|
|
default: {}
|
|
}>()
|
|
|
|
const router = useRouter()
|
|
|
|
useCommand({
|
|
scope: 'Navigation',
|
|
|
|
name: () => props.text ?? props.to,
|
|
icon: () => props.icon,
|
|
|
|
onActivate() {
|
|
router.push(props.to)
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLink :to="to" active-class="text-primary" group focus:outline-none>
|
|
<div flex w-fit px5 py2 gap2 items-center transition-100 rounded-full group-hover:bg-active group-focus-visible:ring="2 current">
|
|
<slot name="icon">
|
|
<div :class="icon" />
|
|
</slot>
|
|
<slot>
|
|
<span>{{ text }}</span>
|
|
</slot>
|
|
</div>
|
|
</NuxtLink>
|
|
</template>
|