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
| <template>
| <div class="empty">
| <img
| class="empty-img"
| :style="{ width: _Size + 'px' }"
| src="../../assets/images/empty.png"
| alt=""
| />
| <p v-if="_Title">{{ _Title }}</p>
| <slot></slot>
| </div>
| </template>
|
| <script>
| export default {
| name: 'Main',
| props: {
| _Title: { // 描述内容
| type: null,
| default: '暂无更多'
| },
| _Size: { // 图片大小
| type: Number,
| default: 150
| }
| }
| };
| </script>
|
| <style scoped lang="scss">
| .empty {
| margin: 30px 0;
| text-align: center;
| width: 100%;
|
| }
| p {
| cursor: pointer;
|
| }
| </style>
|
|