38 lines
538 B
Vue
38 lines
538 B
Vue
<template>
|
|
<!--轮播图-->
|
|
<el-row :gutter="20">
|
|
<el-col :span="12">
|
|
<div class="h-300px">
|
|
<carousel></carousel>
|
|
</div>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<div class="h-300px">
|
|
<carousel></carousel>
|
|
</div>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
|
|
<!-- 推荐商品列表-->
|
|
<item></item>
|
|
|
|
|
|
</template>
|
|
<script setup lang="ts">
|
|
|
|
import Carousel from '~/components/front/carousel.vue'
|
|
import Item from '~/components/front/item.vue'
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|
|
<route lang="json">
|
|
{
|
|
"meta": {
|
|
"layout": "front"
|
|
}
|
|
}
|
|
</route>
|