mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
28 lines
470 B
Vue
28 lines
470 B
Vue
<template>
|
|
<woot-button
|
|
size="small"
|
|
variant="clear"
|
|
color-scheme="secondary"
|
|
icon="list"
|
|
class="toggle-sidebar"
|
|
@click="onMenuItemClick"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import { BUS_EVENTS } from 'shared/constants/busEvents';
|
|
|
|
export default {
|
|
methods: {
|
|
onMenuItemClick() {
|
|
bus.$emit(BUS_EVENTS.TOGGLE_SIDEMENU);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<style scoped lang="scss">
|
|
.toggle-sidebar {
|
|
margin-left: var(--space-minus-small);
|
|
}
|
|
</style>
|