12345678910111213141516171819202122 |
- <template>
- <view class="content"></view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- onLoad() {},
- onShow() {},
- methods: {}
- };
- </script>
- <style lang="scss">
- page,
- .content {
- min-height: 100%;
- height: auto;
- }
- </style>
|