From b925ec64e1bb4e7f0b9ae4242967d67be3a1de9d Mon Sep 17 00:00:00 2001 From: Tevin <tingquanren@163.com> Date: Fri, 09 Jul 2021 17:24:01 +0800 Subject: [PATCH] 修复页面间通讯销毁的问题,优化eventor内置事件@linked的发送时机 --- forms/input/CInput.vue | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/forms/input/CInput.vue b/forms/input/CInput.vue index 67e15b8..c6f16c8 100644 --- a/forms/input/CInput.vue +++ b/forms/input/CInput.vue @@ -1,5 +1,5 @@ /** - * CInput + * CInput - 表单项,文本输入框 * @author Tevin */ @@ -28,9 +28,12 @@ AtInput, }, props: { - type: String, - placeholder: String, + // 表单数据资源(表单组件内部机制专用) itemRes: Object, + // 输入框类型,text、number、password、phone、idcard、digit + type: String, + // 占位提示 + placeholder: String, }, mounted() {}, }; -- Gitblit v1.9.1