vux x-input 清除按鈕不起作用,解決辦法:
找到node_modues—vux—src–components—x-input --index.vue 組件,修改以下三處
focus () { // 優化添加 setTimeout(() => { this.$refs.input.focus() }, 0) }, onBlur ($event) { this.setTouched() this.validate() // 優化添加 setTimeout(() => { this.isFocus = false }, 0) this.$emit('on-blur', this.currentValue, $event) }, onKeyUp (e) { if (e.key === 'Enter') { e.target.blur() this.isFocus = true //優化添加 this.$emit('on-enter', this.currentValue, e) }