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