常见配置是这样的:
{path:'/*', name:'404', component:()=>import('@/views/404.vue')},
这样会跳到一个 vue 页面,但是现在我想跳到站外一个公共404页面,要怎么做呢?
尝试了这样,不管用:
{path:'/*', redirect:'http://xxx.com/404.html'},
目前用的办法是,先进入 404.vue 里,再运行 window.location.href="http://...."
想请教下大佬们,能直接再路由表里设置吗
看上去没办法。
不过你可以直接把组件写在路由这里。哈哈哈
{path:'/*', name:'404', component: function(){window.location.href="http://sf.gg"}}