bad.vue 310 B

1234567891011121314151617181920212223
  1. <template>
  2. <view class="bad-main">
  3. 11
  4. </view>
  5. </template>
  6. <script setup>
  7. import { ref } from 'vue';
  8. </script>
  9. <style lang="scss" scoped>
  10. .bad-main {
  11. position: fixed;
  12. top: 0px;
  13. left: 0px;
  14. right: 0px;
  15. bottom: 0px;
  16. background-color: #fff;
  17. padding: 0 12px;
  18. }
  19. </style>