| 12345678910111213141516171819202122 |
- <template>
- <view class="center">
-
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- //页面加载即刻发生
- onload() {},
- methods: {}
- };
- </script>
- <style lang="scss">
- .center {
- height: 0;
- min-height: 100%;
- }
- </style>
|