"vscode:/vscode.git/clone" did not exist on "64002b2c0de9d2308a5bb90e8e91fca184fcb744"
Loading.vue 374 Bytes
Newer Older
LiangLiu's avatar
LiangLiu committed
1
2
3
4
5
6
7
8
9
10
11
<script setup>
import { useI18n } from 'vue-i18n'
const { t, locale } = useI18n()
</script>
<template>
        <!-- 加载状态 -->
        <div class="text-center">
                <div class="animate-spin rounded-full h-12 w-12 border-b-2 border-laser-purple mx-auto mb-4"></div>
                <p class="text-gray-400">{{ t('loading') }}</p>
        </div>
</template>