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
href标签怎么用}
if (checkIE()) {
window.addEventListener('hashchange', () => {
var currentPath = window.location.hash.slice(1);
if (this.$route.path !== currentPath) {
this.$router.push(currentPath)
}
}, false)
}
}
}
以上这篇Vue 中 a标签上href⽆法跳转的解决⽅式就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。