mirror of
https://github.com/koel/koel
synced 2024-11-28 15:00:42 +00:00
12 lines
301 B
Vue
12 lines
301 B
Vue
<template>
|
|
<button @click.prevent.stop="toggleSidebar">
|
|
<Icon :icon="faBars" />
|
|
</button>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { faBars } from '@fortawesome/free-solid-svg-icons'
|
|
import { eventBus } from '@/utils'
|
|
|
|
const toggleSidebar = () => eventBus.emit('TOGGLE_SIDEBAR')
|
|
</script>
|