修复构建报错

This commit is contained in:
2025-11-05 16:12:56 +08:00
parent a7bde8bb72
commit ad8978617c
5 changed files with 35 additions and 2 deletions
+3
View File
@@ -41,6 +41,9 @@ export function editUser(userId, data) {
data,
});
}
// 更新用户信息(别名)
export const updateUserInfo = editUser;
// 删除用户
export function deleteUser(userId) {
@@ -0,0 +1,13 @@
<template>
<div>
<router-view />
</div>
</template>
<script setup lang="ts">
// 分类编辑页面
</script>
<style scoped>
</style>
+13
View File
@@ -0,0 +1,13 @@
<template>
<div>
<router-view />
</div>
</template>
<script setup lang="ts">
// 标签编辑页面
</script>
<style scoped>
</style>