skipone.vue 392 B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="">
  3. <web-view :src="url1"></web-view>
  4. <!-- <iframe :src="url" frameborder="0" style="width: 100%; height: 100vh;"></iframe> -->
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. url1: ''
  12. };
  13. },
  14. onLoad(options) {
  15. console.log(options);
  16. this.url1 = decodeURIComponent(options.url);
  17. }
  18. }
  19. </script>
  20. <style lang="scss">
  21. </style>