index.vue 267 B

12345678910111213141516171819202122
  1. <template>
  2. <view class="main">
  3. <shopList></shopList>
  4. </view>
  5. </template>
  6. <script>
  7. import shopList from "@/components/shopList.vue"
  8. export default {
  9. components: {
  10. shopList
  11. },
  12. data() {
  13. return {}
  14. }
  15. }
  16. </script>
  17. <style lang="scss" scoped>
  18. </style>