index.vue 266 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view>
  3. <view>商城首页</view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. components: {
  9. },
  10. onLoad() {
  11. console.log(111111)
  12. },
  13. computed: {
  14. }
  15. }
  16. </script>
  17. <style lang="scss" scoped>
  18. .xxxxxx {
  19. width: 100%;
  20. min-height: 100vh;
  21. }
  22. </style>