美文网首页Vue合集
解决使用this.$router.push()方法页面跳转后不加

解决使用this.$router.push()方法页面跳转后不加

作者: 3anLouYouGu1 | 来源:发表于2020-12-09 16:53 被阅读0次

    注意:created()方法在跳转的时候是无法执行的

    解决方案:在需要刷新的页面添加以下内容

    watch:{
          $route(){
            //跳转到该页面后需要进行的操作
          }
        },
    

    参考资料 https://blog.csdn.net/qq_43639296/article/details/96570089

    相关文章

      网友评论

        本文标题:解决使用this.$router.push()方法页面跳转后不加

        本文链接:https://www.haomeiwen.com/subject/orghgktx.html