go.vue 254 B

123456789101112131415161718192021
  1. <template>
  2. <view class="center">
  3. <web-view :src="src"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. src:'',
  11. }
  12. },
  13. onLoad(op) {
  14. this.src = decodeURIComponent(op.url)
  15. }
  16. }
  17. </script>
  18. <style>
  19. </style>