UI界面模拟shadcn admin效果

This commit is contained in:
Cheng Zhou
2025-12-25 15:47:47 +08:00
parent 148fa6ad9a
commit a1a4964cd2
25 changed files with 1061 additions and 636 deletions
+25
View File
@@ -0,0 +1,25 @@
<template>
<div class="state state-loading">
<el-skeleton :rows="rows" animated />
</div>
</template>
<script setup lang="ts">
withDefaults(
defineProps<{
rows?: number;
}>(),
{
rows: 4,
}
);
</script>
<style scoped>
.state-loading {
padding: 24px;
border: 1px solid var(--ctms-border-color);
border-radius: var(--ctms-radius);
background-color: #ffffff;
}
</style>