ziTiDaXiao.vue 363 B

123456789101112131415161718
  1. <template>
  2. <view class="content">
  3. <image src="../../static/image/index_banner.jpg"></image>
  4. </view>
  5. </template>
  6. <script setup>
  7. import { ref, onMounted } from "vue";
  8. import { onShow } from "@dcloudio/uni-app";
  9. var statusBarHeight = uni.getStorageSync('statusBarHeight')
  10. </script>
  11. <style lang="scss" scoped>
  12. image{
  13. height: 100vh;
  14. width: 100%;
  15. }
  16. </style>