vue 阻止表单默认的提交事件

form

<form  autocomplete="off" @submit.prevent="onSubmit">
   <input type="text" />
</form>

方法

methods: {
      onSubmit(){return false;}
}

猜你喜欢

转载自www.cnblogs.com/leiting/p/9234518.html