mirror of
https://github.com/thelounge/thelounge
synced 2025-02-17 05:38:25 +00:00
13 lines
179 B
Vue
13 lines
179 B
Vue
<template>
|
|
<button
|
|
class="lt"
|
|
aria-label="Toggle channel list"
|
|
@click="$root.toggleSidebar"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "SidebarToggle",
|
|
};
|
|
</script>
|