baseline: 保留 07 风格重写前的 Vue 前端原件

This commit is contained in:
Sakurasan
2026-09-20 20:48:00 +08:00
commit edee708802
63 changed files with 4404 additions and 0 deletions
@@ -0,0 +1,10 @@
<script setup lang="ts">
withDefaults(defineProps<{ text?: string }>(), { text: 'Loading...' })
</script>
<template>
<div class="flex flex-col items-center justify-center py-20 text-zinc-400 space-y-3">
<i class="i-mingcute-loading-3-line text-3xl animate-spin" />
<span class="text-sm">{{ text }}</span>
</div>
</template>