index.vue 220 B

1234567891011121314151617181920212223
  1. <template>
  2. <view class="home">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. onLoad: function() {}
  8. }
  9. </script>
  10. <style lang="scss">
  11. page {
  12. background-color: #202246;
  13. }
  14. .home {
  15. width: 100vw;
  16. }
  17. </style>