mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
14 lines
329 B
Vue
14 lines
329 B
Vue
<template>
|
|
<SidebarItem href="#/youtube" screen="YouTube">
|
|
<template #icon>
|
|
<Icon :icon="faYoutube" fixed-width />
|
|
</template>
|
|
<slot />
|
|
</SidebarItem>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { faYoutube } from '@fortawesome/free-brands-svg-icons'
|
|
|
|
import SidebarItem from './SidebarItem.vue'
|
|
</script>
|