Files
cdTestPlant3/cdTMP/src/components/Empty/index.vue

27 lines
463 B
Vue
Raw Normal View History

2024-05-30 11:29:44 +08:00
<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>