feat: 添加用户设置功能,支持修改昵称和邮箱,重构相关路由和组件

This commit is contained in:
2025-12-21 01:11:53 +07:00
parent 2e42bbc278
commit a4034b6b78
22 changed files with 620 additions and 225 deletions

View File

@@ -47,6 +47,8 @@ const app = createApp(App)
.use(router)
.use(i18n);
router.isReady().then(() => {
app.mount("#app");
beforeApp().then(() => {
router.isReady().then(() => {
app.mount("#app");
});
});