14 lines
179 B
Vue
14 lines
179 B
Vue
<template>
|
|
<button
|
|
class="lt"
|
|
aria-label="Toggle channel list"
|
|
@click="$root.toggleSidebar"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "SidebarToggle",
|
|
};
|
|
</script>
|