<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 编译成微信小程序