openAddress.vue 340 B

1234567891011121314151617181920212223
  1. <template>
  2. <view class="open-address">
  3. 地址数据
  4. </view>
  5. </template>
  6. <script setup>
  7. </script>
  8. <style scoped>
  9. .open-address{
  10. height: 100vh;
  11. width: 100vw;
  12. position: fixed;
  13. top: 0;
  14. left: 0;
  15. z-index: 999999;
  16. /* background: #f0f0f0; */
  17. background: red;
  18. display: flex;
  19. flex-direction: column;
  20. }
  21. </style>