hookehuyr

🐞 fix(邮箱控件): 无法录入问题处理

1 <!-- 1 <!--
2 * @Date: 2022-08-29 14:31:20 2 * @Date: 2022-08-29 14:31:20
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2022-12-22 13:17:34 4 + * @LastEditTime: 2023-01-18 15:58:11
5 * @FilePath: /data-table/src/components/EmailField/index.vue 5 * @FilePath: /data-table/src/components/EmailField/index.vue
6 * @Description: 邮箱输入框 6 * @Description: 邮箱输入框
7 --> 7 -->
...@@ -18,7 +18,8 @@ ...@@ -18,7 +18,8 @@
18 :placeholder="item.component_props.placeholder" 18 :placeholder="item.component_props.placeholder"
19 :rules="rules" 19 :rules="rules"
20 :required="item.component_props.required" 20 :required="item.component_props.required"
21 - disabled="item.component_props.readonly" 21 + :disabled="item.component_props.disabled"
22 + :readonly="item.component_props.readonly"
22 clearable 23 clearable
23 /> 24 />
24 </div> 25 </div>
......