Commit 1833db26 authored by Leopoldthecoder's avatar Leopoldthecoder Committed by 杨奕

Select: fix divider and focus issue

parent ac39df84
<template> <template>
<ul class="el-select-group__wrap"> <ul class="el-select-group__wrap" v-show="visible">
<li class="el-select-group__title" v-show="visible">{{ label }}</li> <li class="el-select-group__title">{{ label }}</li>
<li> <li>
<ul class="el-select-group"> <ul class="el-select-group">
<slot></slot> <slot></slot>
......
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
:class="[selectSize ? `is-${ selectSize }` : '']" :class="[selectSize ? `is-${ selectSize }` : '']"
:disabled="disabled" :disabled="disabled"
@focus="handleFocus" @focus="handleFocus"
@click.stop
@keyup="managePlaceholder" @keyup="managePlaceholder"
@keydown="resetInputState" @keydown="resetInputState"
@keydown.down.prevent="navigateOptions('next')" @keydown.down.prevent="navigateOptions('next')"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment