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