增加空状态提示
parent
83a56766a2
commit
17a336d5c0
@ -0,0 +1,18 @@
|
|||||||
|
<template>
|
||||||
|
<view style="width: 100%;">
|
||||||
|
<img src="../static/empty.png" style="width:100%;" />
|
||||||
|
<view style="color: #bababa;margin-top: 30rpx;font-size: 26rpx;">{{title}}</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
const props = defineProps({
|
||||||
|
title: {
|
||||||
|
type: String,
|
||||||
|
default: '暂无内容'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
</style>
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 9.9 KiB |
Loading…
Reference in New Issue