123456789101112131415161718192021222324252627282930 |
- <template>
- <view>
- <web-view :src="src"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- src: ''
- }
- },
- onLoad(option) {
-
- this.src = option.src
-
- uni.showShareMenu({
- withShareTicket: true,
- menus: ['shareAppMessage', 'shareTimeline']
- })
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|