123456789101112131415161718192021222324252627282930313233343536 |
- <template>
-
- <view class="content">
-
- </view>
-
- </template>
- <script>
-
- export default {
- data() {
- return {}
- },
- mounted() {
-
- },
- methods: {
-
- }
- }
-
- </script>
- <style lang="scss" scoped>
- page {
- width: 100vw;
- height: 100vh;
- }
- .content {
- width: 100%;
- height: 100%;
- background-color: #F5F5F7;
- }
-
- </style>
|