|
|
<template>
|
|
|
<brand-top-cmpnt v-bind:share-data="shareData"></brand-top-cmpnt>
|
|
|
<brand-shop-top-cmpnt v-bind:domain="'nike'"></brand-shop-top-cmpnt>
|
|
|
<brand-top v-bind:share-data="shareData"></brand-top>
|
|
|
<brand-shop-top></brand-shop-top>
|
|
|
<!--<goods-list v-bind:data="productList"></goods-list>-->
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
const $ = require('yoho-jquery');
|
|
|
const tip = require('common/tip');
|
|
|
const brandTopCmpnt = require('channel/brand-top.vue');
|
|
|
const brandShopTopCmpnt = require('channel/brand-shop-top.vue');
|
|
|
const brandTop = require('channel/brand-top.vue');
|
|
|
const brandShopTop = require('channel/brand-shop-top.vue');
|
|
|
const goodsList = require('product/list.vue');
|
|
|
|
|
|
module.exports = {
|
...
|
...
|
@@ -37,8 +37,8 @@ |
|
|
}
|
|
|
},
|
|
|
components: {
|
|
|
brandTopCmpnt,
|
|
|
brandShopTopCmpnt,
|
|
|
brandTop,
|
|
|
brandShopTop,
|
|
|
goodsList
|
|
|
}
|
|
|
};
|
...
|
...
|
|