|
|
<template>
|
|
|
<tab v-bind:page="page"></tab>
|
|
|
<brand-search></brand-search>
|
|
|
<resources v-bind:content-code.sync="contentCode"></resources>
|
|
|
<brand-list v-bind:channel="channel"></brand-list>
|
|
|
</template>
|
...
|
...
|
@@ -10,6 +11,7 @@ |
|
|
const tab = require('channel/tab.vue');
|
|
|
const resources = require('component/resources/index.vue');
|
|
|
const brandList = require('channel/brand-list.vue');
|
|
|
const brandSearch = require('channel/brand-search.vue');
|
|
|
|
|
|
|
|
|
module.exports = {
|
...
|
...
|
@@ -21,6 +23,7 @@ |
|
|
},
|
|
|
components: {
|
|
|
tab,
|
|
|
brandSearch,
|
|
|
resources,
|
|
|
brandList
|
|
|
}
|
...
|
...
|
|