1***@qq.com
1***@qq.com
  • 发布:2025-01-09 18:03
  • 更新:2025-01-09 18:05
  • 阅读:16

input组件不能v-model和@input一起使用吗?

分类:uni-app
<template>  
    <input v-model="text" @input="change" />  
</template>  
<script setup>  
import {ref} from 'vue';  
const text = ref('');  
const change = (e)=>{  
    console.log(e.target.value);  
}  
</script>

一旦触发input事件就会报错“TypeError: fn is not a function”,不使用v-model绑定就是正常的

vue3 setup 编译成微信小程序

2025-01-09 18:03 负责人:无 分享
已邀请:
DCloud_UNI_yuhe

DCloud_UNI_yuhe

你是哪个版本出现的问题?能确定是与此有关吗?我这跑了一下没有复现出来

要回复问题请先登录注册