key table

This commit is contained in:
hptangxi
2025-07-06 21:21:00 +08:00
parent bf7fb2221b
commit a992c28593
5 changed files with 125 additions and 93 deletions

View File

@@ -1,5 +1,6 @@
<script setup lang="ts">
import GlobalProviders from "@/components/GlobalProviders.vue";
import GlobalTaskProgressBar from "@/components/GlobalTaskProgressBar.vue";
import Layout from "@/components/Layout.vue";
import { useAuthKey } from "@/services/auth";
import { computed } from "vue";
@@ -15,7 +16,7 @@ const isLoggedIn = computed(() => !!authKey.value);
<router-view v-else key="auth" />
<!-- 全局任务进度条 -->
<!-- <global-task-progress-bar /> -->
<global-task-progress-bar />
</div>
</global-providers>
</template>