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