floating-vue
floating-vue copied to clipboard
Is there a way to hide the arrow in the dropdown?
I have tried using CSS to hide the arrow from showing but I cannot seem to get it done
Yes, you must override .v-popper__arrow-container like this:
.v-popper__arrow-container {
display: none
}
Also to remove the padding you'll need to set :distance="0"
Thank you, worked perfectly