index.vue 399 B

123456789101112131415161718192021222324252627
  1. // pages/web-view/index.vue
  2. <template>
  3. <view class="web-view-container">
  4. <web-view :src="webUrl"></web-view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. webUrl: ''
  12. }
  13. },
  14. onLoad(options) {
  15. // 解码URL参数
  16. this.webUrl = decodeURIComponent(options.url);
  17. }
  18. }
  19. </script>
  20. <style>
  21. .web-view-container {
  22. width: 100%;
  23. height: 100vh;
  24. }
  25. </style>