1. 定义一个变量为验证码
const code = ref("1234")
2. 在验证码上添加一个点击事件
const handleCode = () =>{
yzm.value =
Math.floor(Math.random() * 10) +
"" +
Math.floor(Math.random() * 10) +
"" +
Math.floor(Math.random() * 10) +
"" +
Math.floor(Math.random() * 10);
}