123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <mobile-frame>
- <view class="main">
- <view class="one">
- 1
- </view>
- </view>
- </mobile-frame>
- </template>
- <script>
- export default {
- data() {
- return {
- list: []
- };
- },
- onLoad: function(e) {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss">
- .main {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- .one {}
- }
- </style>
|