27 lines
523 B
JavaScript
Executable File
27 lines
523 B
JavaScript
Executable File
import { appName } from '@/configs/index'
|
|
|
|
export default {
|
|
data () {
|
|
return {
|
|
shareAppMessageProps: {
|
|
imageUrl: 'https://pei-zhen.oss-cn-shanghai.aliyuncs.com/5531711684145_.pic.jpg',
|
|
},
|
|
shareTimelineProps: {},
|
|
}
|
|
},
|
|
onShareAppMessage () {
|
|
return {
|
|
title: appName,
|
|
path: '/pages/index/home/index',
|
|
...this.shareAppMessageProps,
|
|
}
|
|
},
|
|
onShareTimeline () {
|
|
return {
|
|
title: appName,
|
|
query: '',
|
|
...this.shareTimelineProps,
|
|
}
|
|
},
|
|
}
|