123456789101112131415161718192021222324252627282930 |
- <template>
- <view class="head-icon" @click.stop="openShare()">
- <image src="../../static/images/logo.png" mode="aspectFit"></image>
- <sharePage ref="sharePageRef"/>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- methods:{
- openShare(){
- // uni.navigateTo({
- // url: '/pages/content/share'
- // });
- this.$nextTick(() => {
- this.$refs.sharePageRef.openShare()
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
-
- </style>
|