problem description
set up a number of Dropdown right-click pop-up menus, but when there is already a menu expansion, right-clicking other menus has no effect. You have to click the left button in the blank space and put away the original menu in order to expand the new menu. How to solve this problem?
Screenshot
related codes
</a>
</div>
<script>
new Vue({
el: "-sharpapp",
methods: {
rightClick: function (event) {
let _this = this;
//visible
//_this.$refs.menu.currentVisible = false;
_this.$refs.menu.$refs.reference = event.target;
_this.$refs.menu.currentVisible =true;
}
}
})