1. 程式人生 > >Vue 中 a標籤上href無法跳轉

Vue 中 a標籤上href無法跳轉

問題:

    使用vue-router 在IE下 a標籤裡的路由不跳轉,火狐,chrome工作正常。

解決:

    在App.vue 裡增加判斷IE瀏覽器手動修復……

export default {
  name: 'App',
  mounted(){
    function checkIE(){
      return '-ms-scroll-limit' in document.documentElement.style && '-ms-ime-align' in document.documentElement.style
    }
    if (checkIE()) {
      window.addEventListener('hashchange', () => {
        var currentPath = window.location.hash.slice(1);
        if (this.$route.path !== currentPath) {
        this.$router.push(currentPath)
      }
    }, false)
    }
  }
}


參考:

github大佬
---------------------
作者:lllo3o
來源:CSDN
原文:https://blog.csdn.net/lllo3o/article/details/79929458
版權宣告:本文為博主原創文章,轉載請附上博文連結!