123456789101112131415161718192021222324252627282930 |
- <template>
- <view class="content-view">
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
-
- },
- methods: {
- }
- }
- </script>
- <style>
- .content-view {
- width: 100%;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- }
- </style>
|