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