vue單頁面應用在ios跳轉標題不變

router.afterEach(to => {
  if (to.meta.title) {
    document.title = to.meta.title;
    // iOS 
    if (navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)) {
      const _iframe= document.createElement("iframe");
      _iframe.style.display = "none";
      document.body.appendChild(_iframe);
      setTimeout(() => {
        document.body.removeChild(_iframe);
      }, 300);
    }
  }
});

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章