1234567891011121314151617181920212223 |
- <template>
- <view class="bad-main">
- 11
- </view>
- </template>
- <script setup>
- import { ref } from 'vue';
- </script>
- <style lang="scss" scoped>
- .bad-main {
- position: fixed;
- top: 0px;
- left: 0px;
- right: 0px;
- bottom: 0px;
- background-color: #fff;
- padding: 0 12px;
- }
- </style>
|