1234567891011121314151617181920212223242526272829 |
- export default {
- data() {
- return {
- // 默认的全局分享内容
- share: {
- title: '喵星人智能售货商家端',
- path: '/pages/login', // 全局分享的路径
- imageUrl: '', // 全局分享的图片(可本地可网络)
- }
- }
- },
- // 定义全局分享
- // 1.发送给朋友
- onShareAppMessage(res) {
- return {
- title: this.share.title,
- path: this.share.path,
- imageUrl: this.share.imageUrl,
- }
- },
- //2.分享到朋友圈
- onShareTimeline(res) {
- return {
- title: this.share.title,
- path: this.share.path,
- imageUrl: this.share.imageUrl,
- }
- }
- }
|