refactor(components): 修改用户中心路由名称

- 将路由名称从 "个人中心" 修改为 "AppUserInfo"
- 保持了代码的逻辑不变,仅更新了路由的名称
This commit is contained in:
aixianling
2024-12-23 14:39:40 +08:00
parent 711db33df3
commit 4d96417661

View File

@@ -78,7 +78,7 @@ export default {
}) })
break; break;
case 'user': case 'user':
this.$router.push({name: "个人中心"}) this.$router.push({name: "AppUserInfo"})
break; break;
} }
}, },