brand-box.vue
505 Bytes
<template>
<brand-top-component v-bind:share-Link="shareLink"></brand-top-component>
</template>
<script>
const brandTopComponent = require('channel/brand-top.vue');
// TODO 确定分享页面后需要添加拼接分享链接的公共方法
let shareLink = 'http://www.yohobuy.com';
module.exports = {
data() {
return {
shareLink: shareLink
};
},
components: {
brandTopComponent
}
};
</script>