router.beforeEach((to, from, next) => {
if (navigator.userAgent.indexOf('MSIE') > -1 && to.path === 'path') {//path:不兼容组件所在路由
alert(‘组件不兼容IE10及以下浏览器,请使用更高版本的浏览器查看', '浏览器不兼容通知’)
} else {
next();
}
});
标签:vue,浏览器,兼容,ie10,跳转,组件,path,next,路由
来源: https://www.cnblogs.com/hudoudou/p/12425358.html