brand-list-box.vue 1.04 KB
<template>
    <div>
        <header-box title="BRANDS" ref="header"></header-box>
        <resources :content-code="contentCode"></resources>
        <brand-list :channel="channel"></brand-list>
    </div>
</template>
<script>
    import contentCode from 'content-code';
    import qs from 'yoho-qs';
    import cookie from 'yoho-cookie';

    import tab from 'channel/tab.vue';
    import resources from 'component/resources/index.vue';
    import brandList from 'channel/brand-list.vue';
    import brandSearch from 'channel/brand-search.vue';
    import HeaderBox from 'component/header.vue';

    const detaultChannel = qs.channel || cookie.get('_Channel') || 'men';

    export default {
        data() {
            return {
                page: 'brand',
                channel: qs.channel,
                contentCode: contentCode.brand[detaultChannel]
            };
        },
        components: {
            tab,
            brandSearch,
            resources,
            brandList,
            HeaderBox
        }
    };
</script>

<style>
</style>