fix flicker bug for menus

This commit is contained in:
Philipp Kühn
2021-04-01 17:55:32 +02:00
parent 3b3a0103b9
commit 4d4f96bfc0
6 changed files with 6 additions and 6 deletions

View File

@@ -36,7 +36,7 @@ export const BubbleMenu = Vue.extend({
},
render(createElement) {
return createElement('div', {}, this.$slots.default)
return createElement('div', { style: { visibility: 'hidden' } }, this.$slots.default)
},
beforeDestroy() {