web-view.vue 379 B

1234567891011121314151617181920212223
  1. <template>
  2. <view>
  3. <web-view :src="url" :progress="false"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. url: ''
  11. };
  12. },
  13. onLoad(val) {
  14. console.log(val)
  15. this.url = decodeURIComponent(val.url) //解码网址
  16. },
  17. }
  18. </script>
  19. <style>
  20. </style>