vue路由跳转

Posted yxyuanxiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue路由跳转相关的知识,希望对你有一定的参考价值。

// 保存
    saveData() {
      teacher.save(this.teacher).then(response => {
        return this.$message({
          type: ‘success‘,
          message: ‘保存成功!‘
        })
      }).then(resposne => {
        // 路由跳转,添加完成后跳转到列表页面
        this.$router.push({ path: ‘/edu/teacher‘ })
      }).catch((response) => {
        // console.log(response)
        this.$message({
          type: ‘error‘,
          message: ‘保存失败‘
        })
      })
    }

以上是关于vue路由跳转的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段11——vue路由的配置

如何在vue中实现路由跳转判断用户权限功能

vue路由发生了跳转,但页面没有跳转成功,怎么办呢?

vue_cli路由传参个人总结--完整代码

Vue总结第五天:vue-router (使用模块化(创建Vue组件)机制编程)router-link 标签的属性路由代码跳转懒加载路由嵌套(子路由)路由传递数据导航守卫)

Vue安装并使用路由和路由器实现页面跳转