feat: Setup context menu for message (#6750)

This commit is contained in:
Pranav Raj S
2023-03-24 16:20:19 -07:00
committed by GitHub
parent d666afd757
commit 70e7530cb4
8 changed files with 223 additions and 152 deletions

View File

@@ -1,7 +1,5 @@
<template>
<div
v-show="show"
ref="context"
class="context-menu-container"
:style="style"
tabindex="0"
@@ -39,7 +37,6 @@ export default {
},
mounted() {
this.$nextTick(() => this.$el.focus());
this.show = true;
},
};
</script>