This commit is contained in:
2024-05-30 11:29:44 +08:00
parent 91864994af
commit 7b37fdd2bb
19 changed files with 1396 additions and 268 deletions

View File

@@ -0,0 +1,26 @@
<template>
<div class="empty-container">
<icon-empty :size="60" />
<p>{{ text }}</p>
</div>
</template>
<script setup>
import { ref } from "vue"
const text = ref("暂无数据")
</script>
<style lang="less" scoped>
.empty-container {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: #aaa;
p {
margin-top: 6px;
}
}
</style>