reportPage.vue 310 B

1234567891011121314151617181920212223242526272829303132333435
  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. }
  25. </style>