fix: UserManage.vue 补充丢失的 useAuthStore 导入

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-06-27 12:09:04 +08:00
parent 015af18d3c
commit 2bb85bf45c
@@ -1,8 +1,10 @@
<script setup lang="ts">
import { ref, onMounted } from 'vue'
import { useAuthStore } from '@/stores/auth'
import { ElMessage, ElMessageBox } from 'element-plus'
import api from '@/api/index'
const auth = useAuthStore()
const loading = ref(false)
const users = ref<any[]>([])
const editDialogVisible = ref(false)