mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-09 02:31:33 +08:00
fix(select): fix the bug about clicking the select component (#513)
fix the bug about clicking the select component fix #496
This commit is contained in:
parent
39cf4fc8c1
commit
2d2ed23cd3
@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<div
|
||||
ref="selectWrapper"
|
||||
v-clickOutside="handleClose"
|
||||
class="el-select"
|
||||
:class="[selectSize ? 'el-select--' + selectSize : '']"
|
||||
@click.stop="toggleMenu"
|
||||
@ -139,7 +140,6 @@
|
||||
<el-select-menu
|
||||
v-show="visible && emptyText !== false"
|
||||
ref="popper"
|
||||
v-clickOutside="handleClose"
|
||||
>
|
||||
<el-scrollbar
|
||||
v-show="options.length > 0 && !loading"
|
||||
|
Loading…
Reference in New Issue
Block a user