index.vue 303 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="homePage-container">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. }
  10. },
  11. onShow() {
  12. },
  13. methods:{
  14. }
  15. }
  16. </script>
  17. <style lang="scss">
  18. page{
  19. height: 100%;
  20. }
  21. .homePage-container {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. </style>