Browse Source

fix: 修复input双向绑定问题
1. 修复input的双向绑定问题
2. 增加禁用input功能

kindring 3 months ago
parent
commit
616abf5767
1 changed files with 10 additions and 0 deletions
  1. 10 0
      src/components/public/kui/kui-input.vue

+ 10 - 0
src/components/public/kui/kui-input.vue

@@ -28,6 +28,10 @@ const props = defineProps({
     type: String,
     default: 'text'
   },
+  disabled: {
+    type: Boolean,
+    default: false
+  }
 })
 
 const showPasswd = ref(false);
@@ -64,6 +68,11 @@ function clickHandle(){
   emit('firstClick', value.value);
 }
 
+function changeHandle(e: Event){
+  let nextVal = e.target.value
+  value.value = nextVal
+}
+
 function passwordChangeHandle(){
   showPasswd.value = !showPasswd.value
 }
@@ -79,6 +88,7 @@ function passwordChangeHandle(){
              :id="id"
              :type="showPasswd ? 'text' : type"
              :value="value"
+             :disabled="disabled"
              @change="changeHandle"
              :placeholder="placeholder"
              @click="clickHandle"