index.vue 294 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="content-view">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. }
  10. },
  11. onLoad() {
  12. },
  13. methods: {
  14. }
  15. }
  16. </script>
  17. <style>
  18. .content-view {
  19. width: 100%;
  20. min-height: 100vh;
  21. display: flex;
  22. flex-direction: column;
  23. }
  24. </style>