123456789101112131415161718192021222324 |
- <template>
- <view class="">
- <web-view :src="url1"></web-view>
- <!-- <iframe :src="url" frameborder="0" style="width: 100%; height: 100vh;"></iframe> -->
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- url1: ''
- };
- },
- onLoad(options) {
- console.log(options);
- this.url1 = decodeURIComponent(options.url);
- }
- }
- </script>
- <style lang="scss">
- </style>
|