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