mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
15 lines
421 B
Vue
15 lines
421 B
Vue
<template>
|
|
<SidebarItem screen="YouTube" href="#/youtube" :icon="faYoutube">{{ title }}</SidebarItem>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { faYoutube } from '@fortawesome/free-brands-svg-icons'
|
|
import { ref } from 'vue'
|
|
import { eventBus } from '@/utils'
|
|
|
|
import SidebarItem from './SidebarItem.vue'
|
|
|
|
const title = ref('')
|
|
|
|
eventBus.on('PLAY_YOUTUBE_VIDEO', payload => (title.value = payload.title))
|
|
</script>
|