mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
61 lines
1.4 KiB
Vue
61 lines
1.4 KiB
Vue
<script lang="ts" setup>
|
|
const props = defineProps<{
|
|
text?: string
|
|
icon?: string
|
|
to: string | Record<string, string>
|
|
command?: boolean
|
|
}>()
|
|
|
|
const router = useRouter()
|
|
|
|
if (props.command) {
|
|
useCommand({
|
|
scope: 'Settings',
|
|
|
|
name: () => props.text ?? (typeof props.to === 'string' ? props.to as string : props.to.name),
|
|
icon: () => props.icon || '',
|
|
|
|
onActivate() {
|
|
router.push(props.to)
|
|
},
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLink
|
|
:to="to"
|
|
exact-active-class="text-primary"
|
|
block w-full group focus:outline-none
|
|
@click="$scrollToTop"
|
|
>
|
|
<div
|
|
w-full flex w-fit px5 py3 md:gap2 gap4 items-center
|
|
transition-250 group-hover:bg-active
|
|
group-focus-visible:ring="2 current"
|
|
>
|
|
<div flex-1 flex items-center md:gap2 gap4>
|
|
<div
|
|
flex items-center justify-center flex-shrink-0
|
|
:class="$slots.description ? 'w-12 h-12' : ''"
|
|
>
|
|
<slot name="icon">
|
|
<div v-if="icon" :class="icon" md:text-size-inherit text-xl />
|
|
</slot>
|
|
</div>
|
|
<div space-y-1>
|
|
<p>
|
|
<slot>
|
|
<span>{{ text }}</span>
|
|
</slot>
|
|
</p>
|
|
<p v-if="$slots.description" text-sm text-secondary>
|
|
<slot name="description" />
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div i-ri:arrow-right-s-line rtl-i-ri:arrow-left-s-line text-xl text-secondary-light />
|
|
</div>
|
|
</NuxtLink>
|
|
</template>
|