Fixed #224 for MultiSelect

This commit is contained in:
cagataycivici 2020-03-04 14:36:30 +03:00
parent e8c6eb324e
commit 819b5d5ac7
4 changed files with 38 additions and 3 deletions

View file

@ -301,7 +301,7 @@ export default {
alignOverlay() {
if (this.appendTo) {
DomHandler.absolutePosition(this.$refs.overlay, this.$refs.container);
this.$refs.overlay.style.width = DomHandler.getOuterWidth(this.$refs.container) + 'px';
this.$refs.overlay.style.minWidth = DomHandler.getOuterWidth(this.$refs.container) + 'px';
} else {
DomHandler.relativePosition(this.$refs.overlay, this.$refs.container);
}