hardlounge/client/components/SidebarToggle.vue

10 lines
172 B
Vue
Raw Normal View History

<template>
2019-08-03 15:03:45 -04:00
<button class="lt" aria-label="Toggle channel list" @click="$root.toggleSidebar" />
</template>
<script>
export default {
name: "SidebarToggle",
};
</script>