小点 | 页面返回不刷新解决方案

356 阅读1分钟
// 页面返回不刷新解决方案  vue 在 mounted 加
 window.onpageshow = function (event) {
        if (
          event.persisted ||
          (window.performance && window.performance.navigation.type === 2)
        ) { 
          window.location.reload()
        }
      }