19 lines
288 B
Vue
19 lines
288 B
Vue
|
|
<template>
|
||
|
|
<!-- 租赁需求 -->
|
||
|
|
<view class="content">
|
||
|
|
<van-empty description="租赁需求欢迎您" />
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup>
|
||
|
|
import { ref } from 'vue'
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
.content {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
</style>
|