Make the input full width by default
This commit is contained in:
parent
e5ce9e619d
commit
6db151d57a
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
:class="{'has-search-results': searchResultsVisible}"
|
||||
ref="multiselectRoot"
|
||||
>
|
||||
<div class="input-wrapper input" :class="{'has-multiple': multiple}">
|
||||
<div class="input-wrapper input" :class="{'has-multiple': multiple && Array.isArray(internalValue) && internalValue.length > 0}">
|
||||
<template v-if="Array.isArray(internalValue)">
|
||||
<template v-for="(item, key) in internalValue">
|
||||
<slot name="tag" :item="item">
|
||||
|
|
Loading…
Reference in a new issue