fix(ui): 修复 Vue 应用初始化语法错误

- currentUser 初始化改为 { username: '' }(之前遗漏空字符串)
- 通过 node --check 验证语法正确
This commit is contained in:
lt
2026-04-27 22:06:17 +08:00
parent 953b74bf52
commit d719181834
+1 -1
View File
@@ -189,7 +189,7 @@ const TopicsApp = {
currentPage: 'topics',
isLoggedIn: false,
isAdmin: false,
currentUser: { username: },
currentUser: { username: '' },
loadingTable: false,
selectedTopicIds: [],
filterStatus: '',