intro.vue 327 B

123456789101112131415161718192021
  1. <template>
  2. <div class="intro">
  3. <div class="intro-top">
  4. <p><i></i><span>175</span>家店铺</p>
  5. </div>
  6. <shop-list></shop-list>
  7. </div>
  8. </template>
  9. <script>
  10. import ShopList from '~components/mobile/common/shopList.vue'
  11. export default {
  12. components: {
  13. ShopList
  14. }
  15. }
  16. </script>
  17. <style scoped>
  18. </style>