mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
* [Enhancement] Hide sidebar on tablets * Remove unnecessary console.log * Use beforeDestroy
15 lines
245 B
Vue
15 lines
245 B
Vue
<template>
|
|
<i class="ion-android-menu hamburger--menu" @click="onMenuItemClick"></i>
|
|
</template>
|
|
|
|
<script>
|
|
/* global bus */
|
|
export default {
|
|
methods: {
|
|
onMenuItemClick() {
|
|
bus.$emit('sidemenu_icon_click');
|
|
},
|
|
},
|
|
};
|
|
</script>
|