WechatOwnerService/pages/mall/mall.vue
2020-10-27 18:37:51 +08:00

40 lines
690 B
Vue

<template>
<view>
<view class="cu-bar search bg-white">
<view class="search-form round">
<text class="cuIcon-search"></text>
<input :adjust-position="false" v-model="communityName" type="text" placeholder="请输入商品名" confirm-type="search"></input>
</view>
</view>
<vc-category></vc-category>
<vc-recommend></vc-recommend>
</view>
</template>
<script>
import vcCategory from '@/components/vc-category/vc-category.vue'
import vcRecommend from '@/components/vc-recommend/vc-recommend.vue'
export default {
data() {
return {
}
},
components:{
vcCategory,
vcRecommend
},
methods: {
}
}
</script>
<style>
</style>