结果是:http://localhost:8100/#/ 改变为 http://localhost:8100/?#/ 导致路由跳转出现问题。 原因:这里是 form 表单,点击了button 按钮,触发了他的默认事件,就是触发了提交这个行为。 解决方案:使用@click.prevent 阻止默认事件 <a-button type="primary" @click.prevent="handleSubmit" > 确认 </a-button>
标签:vue,http,8100,表单,输入框,中多 From: https://www.cnblogs.com/shuihanxiao/p/17831589.html