备份一下 免得找不到

export default {
    data() {
        return {
            // 默认的全局分享内容
            share: {
                title: '未来已来,立即来元AI探索制作令人惊叹的下一代艺术二维码!',
                path: '/pages/main/index/index?inviteCode='+ uni.getStorageSync('userInfo').invitationCode ,   // 全局分享的路径,比如 首页
				imageUrl: 'https://yuanai-aiqr-images.likesrt.com/blap/AIQR.png'
            }
        }
    },
    // 定义全局分享
    // 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,
        }
    },
}