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