12345678910111213141516171819202122 |
- <template>
- <view class="main">
- <shopList></shopList>
- </view>
- </template>
- <script>
- import shopList from "@/components/shopList.vue"
- export default {
- components: {
- shopList
- },
- data() {
- return {}
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|