1234567891011121314151617181920212223242526272829303132 |
- <template>
- <el-empty
- class="empty-box"
- :image-size="200"
- image="https://cdn-ali2.jianyu360.com/frontRouter/pc/mesgCenter/image/no-mesg.png"
- >
- <template v-slot:description>
- <span class="tip-text">{{ tip }}</span>
- </template>
- <slot></slot>
- </el-empty>
- </template>
- <script>
- export default {
- name: 'EmptyTip',
- props: {
- tip: {
- type: String,
- default: '暂无数据'
- }
- }
- }
- </script>
- <style scoped>
- .tip-text {
- font-size: 14px;
- color: #999999;
- line-height: 22px;
- }
- </style>
|