reportPage.vue 341 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="content">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {}
  9. },
  10. mounted() {
  11. },
  12. methods: {
  13. }
  14. }
  15. </script>
  16. <style lang="scss" scoped>
  17. page {
  18. width: 100vw;
  19. height: 100vh;
  20. }
  21. .content {
  22. width: 100%;
  23. height: 100%;
  24. background-color: #F5F5F7;
  25. }
  26. </style>