router.beforeEach((to, from, next) => { console.log(to); console.log(from); console.log(next); });页面空白
时间: 2024-04-07 08:30:48 浏览: 145
关于vue-router的beforeEach无限循环的问题解决
如果你在 `beforeEach` 函数中没有返回任何值,那么页面不应该出现空白,而是应该正常渲染。如果你的页面出现了空白,可能是因为在 `beforeEach` 函数中出现了错误,导致页面无法正常渲染。
你可以尝试在控制台中查看是否有报错信息,以便更快地定位问题。另外,你也可以尝试注释掉 `beforeEach` 函数中的代码,逐步排查出问题所在。
阅读全文