comment-empty.vue
935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<template>
<CommentPlaceholder v-bind="$attrs" v-on="$listeners">
<div class="comment-empty-wrap">
<div class="empty-content">
<div class="empty-img"></div>
<p class="empty-tip">暂无评论,快来评论吧!</p>
</div>
</div>
</CommentPlaceholder>
</template>
<script>
import CommentPlaceholder from './comment-placeholder';
export default {
name: 'CommentEmpty',
components: {
CommentPlaceholder
}
};
</script>
<style lang="css" scoped>
.comment-empty-wrap {
display: flex;
align-items: center;
justify-content: center;
height: 400px;
}
.empty-content {
margin-top: -10px;
}
.empty-img {
width: 250px;
height: 181px;
background-image: url("~statics/image/article/comment-empty.png");
background-size: 100%;
margin: 0 auto 20px;
}
.empty-tip {
font-size: 26px;
color: #b0b0b0;
font-weight: 300;
}
</style>