可以
router.beforeEach(async(to, from, next) => {
if (to.meta.auth) {
// need verification
// This is a promise function 👇
await widget.user
.authVerification()
.then(() => {
next();
})
.catch((error) => {
// Session expired
console.log(error);
next("/login");
});
}
}