|
|
<template>
|
|
|
<div>
|
|
|
<brand-top-component v-bind:share-data="123456"></brand-top-component>
|
|
|
</div>
|
|
|
<brand-top-component v-bind:share-Link="shareLink"></brand-top-component>
|
|
|
</template>
|
|
|
<style>
|
|
|
|
|
|
</style>
|
|
|
<script>
|
|
|
const brandTopComponent = require('channel/brand-top.vue');
|
|
|
|
|
|
let shareLink = 'http://www.yohobuy.com';
|
|
|
|
|
|
module.exports = {
|
|
|
data() {
|
|
|
return {
|
|
|
shareLink: shareLink
|
|
|
};
|
|
|
},
|
|
|
components: {
|
|
|
brandTopComponent
|
|
|
}
|
...
|
...
|
|