前端2月7日 13:43如何在vue3中从setup调用prop函数I have the next code: HTML: <p @click="changeForm">Iniciar sesion</p> JS export default { name: "Register", props: { changeForm: Function, }, setup() ...Vue3