mpShare.js 341 B

123456789101112131415
  1. export default {
  2. data() {
  3. return {
  4. mpShare: {
  5. title: '', // 默认为小程序名称
  6. path: '', // 默认为当前页面路径
  7. imageUrl: '' // 默认为当前页面的截图
  8. }
  9. }
  10. },
  11. onShareAppMessage() {
  12. return this.mpShare;
  13. }
  14. }