You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
337 B
Vue

<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>