pageBody.vue 307 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="pageBody">
  3. <slot></slot>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name:"pageBody",
  9. data() {
  10. return {
  11. currentRoute: 'received'
  12. };
  13. },
  14. methods: {
  15. }
  16. }
  17. </script>
  18. <style lang="scss">
  19. .pageBody {
  20. height: $content-height;
  21. background-color: #ccc;
  22. }
  23. </style>