12345678910111213141516171819202122232425 |
- <template>
- <view class="pageBody">
- <slot></slot>
- </view>
- </template>
- <script>
- export default {
- name:"pageBody",
- data() {
- return {
- currentRoute: 'received'
- };
- },
- methods: {
- }
- }
- </script>
- <style lang="scss">
- .pageBody {
- height: $content-height;
- background-color: #ccc;
- }
- </style>
|