| 123456789101112131415161718 |
- <template>
- <view class="content">
- <image src="../../static/image/index_banner.jpg"></image>
- </view>
- </template>
- <script setup>
- import { ref, onMounted } from "vue";
- import { onShow } from "@dcloudio/uni-app";
- var statusBarHeight = uni.getStorageSync('statusBarHeight')
- </script>
- <style lang="scss" scoped>
- image{
- height: 100vh;
- width: 100%;
- }
- </style>
|