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