laravel 如何在Vue 3中仅在调用函数时提交表单

toe95027  于 2022-12-01  发布在  其他
关注(0)|答案(1)|浏览(170)

有人知道我如何在Vue 3中提交一个注销表单,只有当一个函数被调用时才能提交吗?我在下面插入了相关代码:
第一个

iq3niunx

iq3niunx1#

如果您使用的是javascript:
1.在html表单<form ref="myForm" @submit.prevent="handleSignOut($event)" method="post" action="/logout">上添加标记引用

  1. this.$refs.myForm.submit()
    如果您使用的是打字脚本:
    1.在html表单<form ref="myForm" @submit.prevent="handleSignOut($event)" method="post" action="/logout">上添加标记引用
    1.您需要声明const myForm = ref<HTMLFormElement>()
  2. myForm.value.submit();

相关问题