1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-23 01:50:45 +03:00
elk/components/nav/NavSideItem.vue

26 lines
529 B
Vue
Raw Normal View History

2022-11-27 10:35:26 +08:00
<script setup lang="ts">
defineProps<{
2022-11-27 17:59:33 +01:00
text?: string
2022-11-27 10:35:26 +08:00
icon: string
to: string
}>()
2022-11-27 17:59:33 +01:00
defineSlots<{
icon: {}
default: {}
}>()
2022-11-27 10:35:26 +08:00
</script>
<template>
<NuxtLink :to="to" active-class="text-primary" group focus:outline-none>
2022-11-27 12:45:26 +08:00
<div flex w-fit px5 py2 gap2 items-center transition-100 rounded-full group-hover:bg-active group-focus-visible:ring="2 current">
2022-11-27 10:35:26 +08:00
<slot name="icon">
<div :class="icon" />
</slot>
2022-11-27 17:59:33 +01:00
<slot>
<span>{{ text }}</span>
</slot>
2022-11-27 10:35:26 +08:00
</div>
</NuxtLink>
</template>