佰川加油

This commit is contained in:
caolc
2022-08-08 09:20:48 +08:00
commit a10b2b7dcc
130 changed files with 24997 additions and 0 deletions

3
mixins/index.js Normal file
View File

@@ -0,0 +1,3 @@
import share from './src/share.js';
export {share}

10
mixins/src/share.js Normal file
View File

@@ -0,0 +1,10 @@
export default {
created() {
//#ifdef MP-WEIXIN
wx.showShareMenu({
withShareTicket: true,
menus: ['shareAppMessage', 'shareTimeline']
});
//#endif
},
}