myorderDispose.vue 280 B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="content"></view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {};
  8. },
  9. onLoad() {},
  10. onShow() {},
  11. onReachBottom() {},
  12. onReady() {},
  13. methods: {}
  14. };
  15. </script>
  16. <style lang="scss">
  17. page,
  18. .content {
  19. min-height: 100%;
  20. height: auto;
  21. }
  22. </style>