group add

This commit is contained in:
hptangxi
2025-07-05 22:50:51 +08:00
parent 8f2a0c1afc
commit 22b4e495bc
10 changed files with 679 additions and 725 deletions

View File

@@ -1,6 +1,5 @@
<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";
@@ -16,7 +15,7 @@ const isLoggedIn = computed(() => !!authKey.value);
<router-view v-else key="auth" />
<!-- 全局任务进度条 -->
<global-task-progress-bar />
<!-- <global-task-progress-bar /> -->
</div>
</global-providers>
</template>