xcxFront/utils/share.js

22 lines
362 B
JavaScript
Raw Normal View History

2024-11-05 10:14:41 +08:00
import { onShareAppMessage,onShareTimeline } from '@dcloudio/uni-app';
const onShare = () => {
onShareAppMessage(() => {
return {
title:'123',
path:'/pages/loading/loading'
}
})
onShareTimeline(() => {
return {
title:'456',
path:'/pages/loading/loading'
}
});
return { onShareAppMessage,onShareTimeline }
}
export default onShare;