uniapp 开启全局《微信小程序》分享功能

1.编写share.js

/* 开启微信分享功能 */
export default {
	created() {
		//#ifdef MP-WEIXIN
		wx.showShareMenu({
			withShareTicket: true,
			menus: ['shareAppMessage', 'shareTimeline']
		});
		//#endif
	},
}

2. 在mian.js中引入并注册

import share from './common/share.js'

const app = new Vue({
	...App,
	share
})
Vue.mixin(share)

在这里插入图片描述 

参考链接:uniapp微信小程序使用分享功能_uniapp 小程序分享_神仙姐姐QAQ的博客-CSDN博客

猜你喜欢

转载自blog.csdn.net/wcdunf/article/details/129848707