在搭建vue3+element-plus项目时,有一个登陆表单,我尝试用vue3的setup script去完成登陆功能,在setup script中使用
const form = reactive<{username: string, password: string}>({username: '', password: ''});
在template的el-form
组件中的el-input
无论如何都不能绑定到form.username
几经排查最后发现是el-form
中的ref的名字也叫form和setup中const的定义重复了
这个在浏览器中是不会报错的