VUE3 TypeError: Cannot read properties of undefined (reading ‘push‘) 错误提示
VUE 3TypeError: Cannot read properties of undefined (reading ‘push‘) 错误提示 的解决方案之一
·
const router = useRouter(); // 在外部先创建路由实例
// 挂号方法
function register() {
if (sessionStorage.getItem('userInfo') === null) {
alert('请先登录!');
setTimeout(() => {
router.push('/common/login'); // 内部调用
}, 500);
} else {
//--------------------
}
}
更多推荐
已为社区贡献2条内容
所有评论(0)