const router = useRouter(); // 在外部先创建路由实例
// 挂号方法
function register() {
if (sessionStorage.getItem('userInfo') === null) {
alert('请先登录!');
setTimeout(() => {
router.push('/common/login'); // 内部调用
}, 500);
} else {
//--------------------
}
}
VUE3 TypeError: Cannot read properties of undefined (reading ‘push‘) 错误提示
最新推荐文章于 2024-05-28 11:56:29 发布
关键词由优快云通过智能技术生成