top-nav.vue
1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<template>
<cheader title="商品详情" class="top-nav">
<i class="icon icon-share" slot="right" @click="share()"></i>
</cheader>
</template>
<style>
.top-nav {
.blk-header {
background-color: transparent;
border-bottom: 0;
}
.blk-header-gap {
display: none;
}
}
</style>
<script>
const yoho = require('yoho');
const cheader = require('component/header.vue');
module.exports = {
data() {
return {
yoho: yoho
};
},
props: {
title: String,
img: String
},
components: {
cheader
},
methods: {
share: function() {
yoho.goShare({
title: this.title || '',
des: '我在BLK发现了一个不错的商品,快来看看吧!',
img: this.img,
url: location.href
});
}
}
};
</script>