Newer
Older
Nanping_sponge_GCYPG / src / components / VEmpty.vue
@liyingjing liyingjing on 25 Oct 342 bytes 工程预评估
<template>
    <div class="empty-container">
        <span>暂无数据</span>
    </div>
</template>
<style lang="less">
.empty-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #108ee9;
    background-color: rgba(0, 0, 0, 0.2);
}
</style>