其他分享
首页 > 其他分享> > vue 组件不支持ie10及以下版本时拦截路由跳转和给出提示

vue 组件不支持ie10及以下版本时拦截路由跳转和给出提示

作者:互联网

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