wechat-article / components /grid /Loading.vue
Antigravity
Initialize wechat-article without git history and binary assets
70e483f
Raw
History Blame Contribute Delete
180 Bytes
<script setup lang="ts">
import { Loader } from 'lucide-vue-next';
</script>
<template>
<div>
<Loader :size="28" class="animate-spin text-slate-500" />
</div>
</template>