mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
23 lines
530 B
Vue
23 lines
530 B
Vue
<template>
|
|
<li>
|
|
<a :class="active && 'active'" :href="props.href">
|
|
<Icon :icon="props.icon" fixed-width />
|
|
<span>
|
|
<slot />
|
|
</span>
|
|
</a>
|
|
</li>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { Component, ref } from 'vue'
|
|
import { useRouter } from '@/composables'
|
|
|
|
const props = defineProps<{ href: string; icon: Component, screen: ScreenName }>()
|
|
|
|
const active = ref(false)
|
|
|
|
const { onRouteChanged } = useRouter()
|
|
|
|
onRouteChanged(route => active.value = route.screen === props.screen)
|
|
</script>
|