1.判断首次进入页面 要进行的操作
mounted(){
if (window.performance.navigation.type == 1) {
console.log("页面被刷新")
}else{
console.log("首次被加载")
}
},
destroyed() {
window.performance.navigation.type == 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
网友评论