File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 10
10
@keyup.esc =" deactivate()"
11
11
class =" multiselect" >
12
12
<slot name =" carret" >
13
- <div @mousedown.prevent =" toggle()" class =" multiselect__select" ></div >
13
+ <div @mousedown.prevent.stop =" toggle()" class =" multiselect__select" ></div >
14
14
</slot >
15
15
<div ref =" tags" class =" multiselect__tags" >
16
16
<div class =" multiselect__tags-wrap" v-show =" visibleValue.length > 0" >
31
31
</transition >
32
32
<input
33
33
ref =" search"
34
- :name =" inputName "
34
+ :name =" name "
35
35
:id =" id"
36
36
type =" text"
37
37
autocomplete =" off"
47
47
@keydown.down.prevent =" pointerForward()"
48
48
@keydown.up.prevent =" pointerBackward()"
49
49
@keydown.enter.prevent.stop.self =" addPointerElement($event)"
50
- @keydown.delete =" removeLastElement()"
50
+ @keydown.delete.stop =" removeLastElement()"
51
51
class =" multiselect__input" />
52
52
<span
53
53
v-if =" !searchable"
74
74
<span
75
75
v-if =" !(option && (option.$isLabel || option.$isDisabled))"
76
76
:class =" optionHighlight(index, option)"
77
- @click =" select(option)"
77
+ @click.stop =" select(option)"
78
78
@mouseenter.self =" pointerSet(index)"
79
79
:data-select =" option && option.isTag ? tagPlaceholder : selectLabelText"
80
80
:data-selected =" selectedLabelText"
120
120
* @default ' '
121
121
* @type {String}
122
122
*/
123
- inputName : {
123
+ name : {
124
124
type: String ,
125
125
default: ' '
126
126
},
@@ -529,6 +529,7 @@ fieldset[disabled] .multiselect {
529
529
border-bottom-left-radius : 5px ;
530
530
border-bottom-right-radius : 5px ;
531
531
z-index : 50 ;
532
+ -webkit-overflow-scrolling : touch ;
532
533
}
533
534
534
535
.multiselect__content {
You can’t perform that action at this time.
0 commit comments