index.vue 789 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div class="com-main com-margin-auto com-width-1400">
  3. <section class="com-width-1200 com-margin-auto">
  4. <pc-title :title="'Related ltems'"></pc-title>
  5. <div class="card-wrap com-margin-auto">
  6. <card v-for="(item, k) in indexGoodsRankLists" :key="k" :cardData="item"></card>
  7. </div>
  8. </section>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. layout:'default',
  14. async asyncData({ $axios }) {
  15. const indexGoodsRankLists = await $axios.get("/uk-api/home/indexGoodsRankList");
  16. return {
  17. indexGoodsRankLists: indexGoodsRankLists.result,
  18. };
  19. },
  20. data() {
  21. return {
  22. };
  23. },
  24. methods:{
  25. },
  26. };
  27. </script>
  28. <style lang="scss" scoped>
  29. .card-wrap {
  30. display: grid;
  31. justify-items: center;
  32. }
  33. </style>