vue3 + element plus + vue router 在使用表单提交数据验证后跳转页面时,比如从登录页面跳转到home 页面,但home页面总是一闪又回到登录页面。百思不得其解,找了半天bug,原来是提交按钮没有写el-button,而是随手写成了button。 不知道什么原因这个会影响到页面跳转。前端的坑实在是太多了。

<!-- 正确写法 -->
  <el-form-item>
    <el-button type='primary' @click="submitForm">提交</el-button>
   </el-form-item>

<!-- 错误写法 -->
  <el-form-item>
    <button type='primary' @click="submitForm">提交</button>
   </el-form-item>

Logo

前往低代码交流专区

更多推荐