Zlpt_Portal_h5/src/pages/index/index.vue

19 lines
276 B
Vue
Raw Normal View History

2024-12-13 15:30:11 +08:00
<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>