123456789101112131415161718192021222324252627 |
- <template>
- <view>
- <web-view :src="url"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- url: '',
- }
- },
- onLoad(e) {
- if (e.url) {
- this.url = e.url
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|