Commit c782b0dc authored by Abdalla Nayer's avatar Abdalla Nayer Committed by Jikkai Xiao

DatePicker: turn off autocomplete for date picker range (#12521)

parent 3d3a2233
......@@ -48,6 +48,7 @@
v-else>
<i :class="['el-input__icon', 'el-range__icon', triggerClass]"></i>
<input
autocomplete="off"
:placeholder="startPlaceholder"
:value="displayValue && displayValue[0]"
:disabled="pickerDisabled"
......@@ -60,6 +61,7 @@
class="el-range-input">
<span class="el-range-separator">{{ rangeSeparator }}</span>
<input
autocomplete="off"
:placeholder="endPlaceholder"
:value="displayValue && displayValue[1]"
:disabled="pickerDisabled"
......
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