You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
576 B
33 lines
576 B
<template>
|
|
<view class="content">
|
|
<lf-nav title="商品专题" :showIcon="true"></lf-nav>
|
|
<lf-shop-goods-card v-for="(item, index) in 5" :key="index"></lf-shop-goods-card>
|
|
<u-back-top :scrollTop="pageScrollTop"></u-back-top>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import lfShopGoodsCard from '@/components/lf-shopGoodsCard/lf-shopGoodsCard.vue';
|
|
export default {
|
|
components: {
|
|
lfShopGoodsCard
|
|
},
|
|
data(){
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad(){
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped="scoped">
|
|
.content{
|
|
padding: 30rpx 0;
|
|
}
|
|
</style>
|