Files
YGChatCS/pages/order/components/CustomEmpty/index.vue
2025-07-29 09:01:18 +08:00

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>