We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent badfb0f commit 648f7d3Copy full SHA for 648f7d3
src/Multiselect.vue
@@ -60,6 +60,7 @@
60
:style="{ maxHeight: maxHeight + 'px' }"
61
v-el:list
62
v-show="isOpen"
63
+ @mousedown.stop.prevent=""
64
class="multiselect__content">
65
<slot name="beforeList"></slot>
66
<li v-if="multiple && max === value.length">
src/multiselectMixin.js
@@ -252,7 +252,7 @@ module.exports = {
252
*/
253
isSelected (option) {
254
/* istanbul ignore else */
255
- if (!this.value) return false
+ if (!this.value && this.value !== 0) return false
256
const opt = this.key
257
? option[this.key]
258
: option
0 commit comments