ziTiDaXiao.vue 303 B

1234567891011121314151617
  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. </script>
  10. <style lang="scss" scoped>
  11. image{
  12. height: 100vh;
  13. width: 100%;
  14. }
  15. </style>