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