27 lines
443 B
Vue
27 lines
443 B
Vue
|
|
<template>
|
|
<view class="empty-container">
|
|
<image
|
|
class="empty-image"
|
|
mode="aspectFit"
|
|
src="./images/empty.png"
|
|
></image>
|
|
<text class="empty-text">{{ statusText }}</text>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { defineProps } from "vue";
|
|
|
|
const props = defineProps({
|
|
statusText: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import "./styles/index.scss";
|
|
</style>
|