美文网首页vue
vue中 判断页面首次进入

vue中 判断页面首次进入

作者: 郭的妻 | 来源:发表于2021-03-08 11:54 被阅读0次
    1.判断首次进入页面 要进行的操作
    mounted(){
          if (window.performance.navigation.type == 1) {
                console.log("页面被刷新")
          }else{
                console.log("首次被加载")
          }
    },
    destroyed() {
        window.performance.navigation.type == 1;
     }
    

    相关文章

      网友评论

        本文标题:vue中 判断页面首次进入

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